Tilted Forum Project Discussion Community  

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


 
 
LinkBack Thread Tools
Old 10-04-2003, 05:44 PM   #1 (permalink)
Junkie
 
Location: RI
Visual Basic question

Alright, so I recently started playing around with Visual Basic. What I am hoping to do is create a form that'll write something to a file. Then, you need to open another form which will also write something to that file. The problem is the first form allows the person to specify the filename, so I need the second form to reference from the first form.
Is there a way to do it? Or am I SOL and need to find another way to do it?
Fallon is offline  
Old 10-05-2003, 06:09 AM   #2 (permalink)
Insane
 
Well, if I understand correctly, you just need the second form to reference the filename the user chose in the first form. I don't have any VB docs here to tell you exactly how to do it, but I think you should be able to do what you want using a global variable to store the filename.
Spanky Johnson is offline  
Old 10-05-2003, 01:07 PM   #3 (permalink)
Stop. Think. Question.
 
rubicon's Avatar
 
Location: Redondo Beach, CA
Can I ask what this program is?

I'm not sure why you'd have a second form to write to the file - that code would simply execute after the user input form.

As Spanky mentioned, the filename would be stored in a variable and can referenced that way - second form or not.
__________________
How you do anything is how you do everything.
rubicon is offline  
Old 10-05-2003, 03:08 PM   #4 (permalink)
Junkie
 
Location: RI
The program is for my mud. What it is going to do is allow a builder for my mud to build an area that will allow them to know every variable that needs to be filled in. I can't fit every variable into one form as I'd have a quite large form. What the second form is doing is writing all of the variables for a npc in the mud, then another form is going to create objects and write them to the file.
I suppose though if I need to, I could force everything to save to the one certain file, but I don't really wanna do it that way...
Fallon is offline  
Old 10-05-2003, 06:37 PM   #5 (permalink)
Insane
 
Location: Plugged In
Quote:
Originally posted by Fallon
Alright, so I recently started playing around with Visual Basic. What I am hoping to do is create a form that'll write something to a file. Then, you need to open another form which will also write something to that file. The problem is the first form allows the person to specify the filename, so I need the second form to reference from the first form.
Is there a way to do it? Or am I SOL and need to find another way to do it?
If the first form that takes the filename is named "form1", and it has a textbox that accepts the filename, then try the following from the second form:

Dim filename as string
form1.txtFilename.text = filename

The first form will still need to be loaded. If it isn't, you'll need to pass it as a variable somewhere.
Boner is offline  
 

Tags
basic, question, visual


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 05:39 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, 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 74 75 76