User Profile
Collapse
-
great, that worked, cheers, now the tedious bit, copying and moving data, thanks again -
that simple? suppose its all about knowing the right commands, cheers i'll give that a goLeave a comment:
-
Getting a File Path
Hi,
I've got a form (in Vb Express 2008) which has a TextBox and a Button saying Browse
I've managed to get the form to open the Open Dialogue when I press the Browse button, and I can use that to select the .mdb file I want, but how can I get the file path (ie. E:/Comp/Database/records.mdb) into the text box?
cheers if you can help -
-
Read Only Text Boxes
A quick question, is there a way to make a text box/combo box read only without disabling it
(as in:)
Code:TextBox.enabled = false ComboBox.enabled = false
(using VB 2008 express) -
-
Publishing a Vb program to CD with Access Database
Hi, I have a program that I need to publish to a installation CD, I can get that to work but i wont take the Database (MS Access (.mdb)) with it, is it possible to do so or will i have to copy it manually?
Oh using Vb Express 2008 -
hmmm... it didnt work last time, but does now?!?, maybe i spelt something wrong, ah well thanks anywayLeave a comment:
-
Displaying data in VB (URGENT)
Code:dim Str1(0 to 5) as string for i = 1 to 10 str1(i)= Me.controls("textbox" & i). text next
Code:dim Str1(0 to 5) as string for i = 1 to 10 Me.controls("textbox" & i). text = str1(i) next
I would also like to use : .Hide() and .Show()... -
It's alright I've worked it out,
cheers that really helps, saves a lot of code writingLeave a comment:
-
-
-
So basically you want it so when you select an item from a combo box on one form it will display the data from the table onto another form?
If that is the case you need a Module and on that Module declare a Public Variable
ie.
Public Customer As string
Then in your form with the Combo box make the Public variable equal the combo box
Customer = ComboBox.Text
Then on your other form...Leave a comment:
-
Data Capture with many Textboxes (VB and MS Access)
Hi
I've got a form for Data Capture with loads of Text boxs with the same name, except with a different number at the end, oh and im using VB 2005
i.e.
txtName1 txtDOB1
txtName2 txtDOB2
... ...
I need to get all text boxes ending with "1" into a Row in my access database and all textboxes ending with "2" into another row,...
No activity results to display
Show More
Leave a comment: