Forum: Visual Basic 4 / 5 / 6 2 Days Ago |
| Replies: 7 Views: 254 3 Okay, the MDAC is the Microsoft Data Access Components and yes you need it.
2 Those 3 are one in the same...
1 Yes, as previously stated you need those three files...
Tell users to right click... |
Forum: Visual Basic 4 / 5 / 6 6 Days Ago |
| Replies: 3 Views: 281 Add a module, and add...
Sub Main()
End Sub
Then add the code you need to inside of sub main but don't forget to put in your Form1.Show or your program will look like it does not even run.... |
Forum: Visual Basic 4 / 5 / 6 11 Days Ago |
| Replies: 1 Views: 255 GoTo the school or public library and watch how the transactions are made. Write down, step by step, how a typical transaction goes. Talk with the employees there and find out the steps they go... |
Forum: Visual Basic 4 / 5 / 6 19 Days Ago |
| Replies: 2 Views: 308 In form1 create a public sub so when you hide form2 you can call it...
Form1.MyPublicSub
Me.Hide
then in the form1's mypublicsub you instruct whatever data access method you are using to... |
Forum: Visual Basic 4 / 5 / 6 21 Days Ago |
| Replies: 2 Views: 355 two different ways are shown in the following...
Option Explicit
Private Sub Command1_Click()
OpenShowFile
End Sub
Private Sub OpenShowFile() |
Forum: Visual Basic 4 / 5 / 6 21 Days Ago |
| Replies: 6 Views: 468 Don't think so but look at Project>References. You should have these four at the top and in this order...
Visual Basic For Applications
Visual Basic runtime objects and procedures
Visual Basic... |
Forum: Visual Basic 4 / 5 / 6 23 Days Ago |
| Replies: 2 Views: 292 Okay, in your first post you set the lock type with the second code snippet but I don't see it in the first code snippet, which means if you have not explicitly set it, it defaults back to its... |
Forum: Visual Basic 4 / 5 / 6 23 Days Ago |
| Replies: 8 Views: 408 If you are talking about design time... then,... Drag mouse over all the controls you want to make visible = false. OR, you could put these controls in a frame, picture box, or other container... |
Forum: Visual Basic 4 / 5 / 6 33 Days Ago |
| Replies: 7 Views: 514 You know what!!! If you really want someone to do this for you, then go over to rentacoder.com or odesk.com and hire someone to do it for you, else learn how to do it yourself by at least opening up... |
Forum: Visual Basic 4 / 5 / 6 34 Days Ago |
| Replies: 5 Views: 297 >u need think before u act
You need to know how to spell, and use correct grammer!
By the way. What were you thinking posting your question four times? Did you not think before you took action... |
Forum: Visual Basic 4 / 5 / 6 Oct 27th, 2009 |
| Replies: 2 Views: 342 Celt.Max,
the code you are using is for the VBA Listbox control found in Excel, access, etc. and while it is usable from VB6, it is not redistributable...
IvanKenny,
There are two ways in... |
Forum: Visual Basic 4 / 5 / 6 Oct 21st, 2009 |
| Replies: 2 Views: 350 As for tutorials for either vb6 or any of the flavors of vb.net, you can use your friends (yahoo, google, ask, answers, bing) to find them. So you keywords would be vb6 read write consol.
Then in... |
Forum: Visual Basic 4 / 5 / 6 Oct 20th, 2009 |
| Replies: 3 Views: 478 Once again this is not a SMS site, which means you can expand all those abreviations into full words so we don't have to decode your short hand.
So you will also need to use SendMessage.
... |
Forum: Visual Basic 4 / 5 / 6 Oct 15th, 2009 |
| Replies: 5 Views: 430 Look at the dateadd function....
Dim LastDayOfMonth As Integer
LastDayOfMonth = Day(DateAdd("d", -1, Month(Now) + 1 & "/1/" & Year(Now)))
Good Luck |
Forum: Visual Basic 4 / 5 / 6 Oct 13th, 2009 |
| Replies: 7 Views: 588 Look at where you have saved your files. You should see a *.vpg, and one or more *.vbp files. the *.vpg is the group while the *.vbp are the project files. To access just the project, double click... |
Forum: Visual Basic 4 / 5 / 6 Oct 5th, 2009 |
| Replies: 3 Views: 413 Without having to change any of your code you can still accomplish what you want. In the forms design view, highlight the button and then goto its properties. Find the "default" property and make it... |
Forum: Visual Basic 4 / 5 / 6 Aug 27th, 2009 |
| Replies: 5 Views: 3,948 Well there are many more sites out their with much easier to read fonts. Using a proportional on code that programmers are used to seeing in a mono space font is just silly. If you have any pull at... |
Forum: Visual Basic 4 / 5 / 6 Jul 8th, 2009 |
| Replies: 2 Views: 285 Not that I have done this but I read somewhere in some forum that you should change the image field to a binary field and load the binary data into it.
Now, as for asking for full code, that is... |
Forum: Visual Basic 4 / 5 / 6 Jul 1st, 2009 |
| Replies: 3 Views: 571 With a little research at yahoo or google, you can find all of the code you will ever need.
Good Luck |
Forum: Visual Basic 4 / 5 / 6 Jun 23rd, 2009 |
| Replies: 2 Views: 637 Ya, know... I found a web site once that had a lot of information on this subject but now I can't find it.... Can't remember the name or search terms I used to find it....
Oh well.... See... |
Forum: Visual Basic 4 / 5 / 6 Jun 11th, 2009 |
| Replies: 5 Views: 669 DTPicker1.Format = dtpCustom
DTPicker1.CustomFormat = "hh:mm:ss tt"
DTPicker1.Value = "10:55:23 AM"
Good Luck |
Forum: Visual Basic 4 / 5 / 6 Mar 17th, 2009 |
| Replies: 2 Views: 496 sql = "select * from " & Combo2.Text & "'"
You don't need tick on the end.
Good Luck |
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2009 |
| Replies: 1 Views: 293 32,000 identifiers, 64Kb limit per proceedure, but it is all limited by the amount of memory you have on the system as per the documentation. Perhaps your pagefile.sys is not large enough or you may... |