Forum: MS Access and FileMaker Pro Jul 3rd, 2007 |
| Replies: 3 Views: 2,857 Thanx for your replay but the thing that i really want is:
when the user enters the item id then the item id text box control will lose the focus (lost focus event) after that i want the query to be... |
Forum: MS Access and FileMaker Pro Jul 2nd, 2007 |
| Replies: 3 Views: 2,857 I have 2 problems I need your help please:
1- How can I map the result of a select query? let's say that I have a table named "Item" and I need to delete a specific item record from this table. So... |
Forum: MS Access and FileMaker Pro Jul 2nd, 2007 |
| Replies: 1 Views: 2,691 As I understand you want to fix the date. If this is the problem then if you take the system date then all you need to set the control source property of that text box to =Date() then the date will... |
Forum: Visual Basic 4 / 5 / 6 Sep 7th, 2006 |
| Replies: 6 Views: 3,064 I am sorry but WHAT Do you mean by Run setup1.exe and point to the temp folder ??do you mean to double click on setup1.exe and then highlighting the icon of the temp folder ?? |
Forum: Visual Basic 4 / 5 / 6 Sep 6th, 2006 |
| Replies: 6 Views: 3,064 WaltP I tried to use your way But in one step in creating setup.exe file which was copying related files .DLL or .OCX there was a message ("you have some files out of date") I ignored this message... |
Forum: Visual Basic 4 / 5 / 6 Sep 3rd, 2006 |
| Replies: 6 Views: 3,064 I finished My project and its working fine But only on my pc. If i try to test the program on another PC which does not have Visual Basic program installed on it, then it does not work and I get some... |
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2006 |
| Replies: 3 Views: 34,795 as i understod from your message is that you want your listbox list to be like this when the ser drop down the list :-
meat milk
google hotmail
..... ....
if its so. you have... |
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2006 |
| Replies: 1 Views: 926 Guys, I have a problem. I want to locate my database directory so taht i can connect to it ok. I decalred a variable in the general part of the form and used commonDialog object to have open file... |
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2006 |
| Replies: 11 Views: 16,828 stan yost (http://www.daniweb.com/techtalkforums/member102640.html) there is a simple way
lets say you want to pass the text feild of text1
1- declare a public variable in the general part... |
Forum: Visual Basic 4 / 5 / 6 Aug 29th, 2006 |
| Replies: 2 Views: 1,039 It does not work i am using microsoft access and tried to do that but it does not work. I have to fill up the record in the first row so that a new empty record will come up. Even if the column is... |
Forum: Visual Basic 4 / 5 / 6 Aug 27th, 2006 |
| Replies: 2 Views: 1,039 I am facing a problem with my project. I want to Update my database through DataGrid Object which is a tabular one right !.
But, I want to control the number of empty rows that are available.... |
Forum: Visual Basic 4 / 5 / 6 Aug 15th, 2006 |
| Replies: 4 Views: 2,607 |
Forum: Visual Basic 4 / 5 / 6 Aug 15th, 2006 |
| Replies: 4 Views: 2,607 But Bro. The data Type of Column1 in my database is Long integer but Text1.text is String type no match!!!??
I tried to convert like this
Data1.Recordset.FindFirst "UserBadge='" &... |
Forum: Visual Basic 4 / 5 / 6 Aug 15th, 2006 |
| Replies: 4 Views: 2,607 Guys i need your help with this problem.
I want to check if a record in my database is available or not?
My database is stored in microsoft access file. ok.
I used the data control that... |
Forum: Visual Basic 4 / 5 / 6 Aug 15th, 2006 |
| Replies: 8 Views: 8,635 You can use data control in the default tool box and your database is stored in access file just use the properties of the data control i.e. the databasename to locate the .mdb file and recordesource... |
Forum: Visual Basic 4 / 5 / 6 Aug 8th, 2006 |
| Replies: 12 Views: 21,023 this solution will work
Private Sub Text1_KeyPress(KeyAscii As Integer)
'
' Invalidate keystroke if not a digit, decimal point or backspace.
'
If (Not IsNumeric(Chr$(KeyAscii)) And... |
Forum: Visual Basic 4 / 5 / 6 Aug 7th, 2006 |
| Replies: 12 Views: 21,023 Guys anyone knows how to check if a value entered in a text box
i.e. text3.text=integer value is integer or long
i found a function that checks wether the text is numeric or not "isNumeric" but... |
Forum: Visual Basic 4 / 5 / 6 Jul 31st, 2006 |
| Replies: 5 Views: 2,717 Thanx bro. purplegerbil (http://www.daniweb.com/techtalkforums/member34391.html) it works thanx alot |
Forum: Visual Basic 4 / 5 / 6 Jul 31st, 2006 |
| Replies: 5 Views: 2,717 Thanx for replay ,
But when i tried to use this way you wrote
* Right click the toolbar and select Components
Scroll down the list and tick - Microsoft Comon Dialog Control
Double Click... |
Forum: Visual Basic 4 / 5 / 6 Jul 31st, 2006 |
| Replies: 5 Views: 2,717 Hi guys, i have a problem in vb6 .
lets say i have a command button named print in form1 then after clicking the print button it will transfer me to form2 which will control the number of... |
Forum: Visual Basic 4 / 5 / 6 Jul 31st, 2006 |
| Replies: 5 Views: 2,303 You can use the show and hide
if you have tow forms form1 in which your command button is placed and form2 the one you want to go to when you click the button you can easily write in the click... |