Need help bad. Have tried everything I can think of. I've tried several variations of array declarations, the way I call RdYR, and the the way I form the...
I use VB6, and I am not sure whether this relates to the areas changed between VB5 and VB6. But what the heck, I tried your code in VB6. I would get rid of the...
HI Rob Thanks much for your reply. Sorry I haven't been able to get back to you sooner. I've been using MS QuickBasic 4.0 since 1988 which sufficed until...
Hi, I don't have my VB5 disk handy to check this, but in VB6 it is possible to pass arrays to Subs & Functions provided that: * The array is not declared as a...
Adelle Hartley
adelle@...
May 4, 2008 7:37 am
15691
... I should proofread my own posts. I meant to say "Arrays are more commonly iterated by using a non-For-Each loop". A "For Each" loop is a loop. It even...
Adelle Hartley
adelle@...
May 4, 2008 7:39 am
15692
Hi gang, If on frm2 I have a colunm of 50 labels, not on a grid or anything, just all the "lefts" lined up and the visible property set to False. In hopes of...
You're going to have the change the naming a little. Put the "a" before the number (i.e., lblA) and create an array of labels (e.g., lblA(0), lblA(1), etc.)....
There are reasons why the .NET documentation shys away from variant types. I don't know exactly how to explain what that is, because I don't use VB in .NET....
Thanks Don. So far so good, but............... I don't want visibility in all labels all in one shot. Say I have 100 records. I scroll to record 10, click a...
In your click event for the command button, say you have record 10 selected, you just have to do something like this: Form2.lblA(10).Visible = True ... ...
I believe that's impossible in vb6, maybe a better programmer than me would know. On Mon, May 12, 2008 at 10:00 AM, angeladerekjenny <p_l_reed@...> ......
... This example is for command buttons, but it will work for other controls. Dim ctl As CommandButton Set ctl = Me.Controls("Command" & CStr(x%))(0) ...
Adelle Hartley
adelle@...
May 13, 2008 3:42 am
15703
I have been attempting to read an Access DB using VB.Net, sounds easy. The following code creates an DB and add a table and loads to table with data. Dim...
How would you not use ADO.NET, datasets, tables? You can try that to open a datatable: Public Shared Function OpenQuery(ByVal query As String) As DataTable Dim...
haii friends, can we display message for few seconds and continue next step instead of msgbox commands. With msgbox the user has to hit to proceed ... so if...
Can you help me to use object mSflexgrid in order to add data or select codes from the master information through combo boxes with samples codes. Suresh...
It is possible to use the API to close the messagebox after a few seconds. However it is just as easy to create a Form that simulates a messagebox. You can add...
hi suresh, I think this is not possible with default msgbox. But just you make one proccedure for msgbox. and call that proccedure with timer control. and put...
I wrote a short program to spell check. It has about 45,000 words in memory. It will not show the form to ask if user wants to make a correction. I tried...
Hi friends, I have one error in my project of VB 6.0. When I call crystal report then error is occur. Err. number is "20534" and Err. description is "Error...
Haii Mitul, Thanks for ur reply and help. Pls. could you provide me sample of coding for the same - msgbox time controls Suresh ...
I have a copy of VB6 that I have not used for several years. Can you good people tell me if I would have problems installing and using it on a Vista system. ...