Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 07-20-2004, 07:32 AM   #1 (permalink)
Banned
 
VB/Access help

I'm as proficient with Access as one can be without knowing a lick of VB.

Can anyone help me with figuring out how, when a particular button is clicked, it pulls up a form and automatically populates one of the fields in that form.

Second question, is there a way to make that "pop-up" form actually pop up in a specified area on the screen.

If the question is ambiguous, I'll be more specific when/if anyone responds.
matthew330 is offline  
Old 07-21-2004, 02:13 PM   #2 (permalink)
Crazy
 
This can be done 2 ways from what I remembe of VB and Access.

1) thru a macro (for those non vb coders)

1) start a new macro
2) set the first command to open a form (select the form you want to pop up) command is "openform"
3) set the next command to populate data "setvalue"
item is going to be: [Forms]![popupformname]![textboxtopopulate]
the value is whatever you want for the value.

2) in code. I'll leave this out for now unless someone asks how..

as for putting it in a particular place on the screen... I never got into doing that. I'm sure there is a way, try google. the google gods found everything for me when I needed it.
NeoSparky is offline  
Old 07-22-2004, 04:47 AM   #3 (permalink)
Banned
 
thanks - i'm still not sure #1 is the route i'm gonna go, but i'll try your suggestion.

In the event anyone else needs the answer to #2

'DoCmd.MoveSize [right], [down], [width], [height]
DoCmd.MoveSize 6000, 4000, 8800, 3800
matthew330 is offline  
Old 07-22-2004, 06:11 AM   #4 (permalink)
Crazy
 
Thanks for the tip Matthew330!
__________________
liberals rule. phhtt.
fishin is offline  
 

Tags
vb or access


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 11:25 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73