Hi Michael, ... The group still exists, and we do get a rare request through here. I don't use VB6 much anymore, but it's still part of my toolset. -Shawn...
... I think many of the original members of this list already learnt as much as they ever wanted to know about vb6 and have either continued using that...
Suppose I have a text file with each line having 2 items separated by a comma, and the occasional line as a remark statement, beginning with "'": 'names and...
Hi Jim, ... it? ... You can't, really. You have three options: * sanitize the data, so it doesn't have the comments when the "input #" line is called * use a...
I am using vb6 front end and Oracle10g on backend. we developed an application and genered autoid. this application use few users. Now how can controll and...
Hi All please help I use VB6 with service pack 6 on Windows XP professional. I wanted to use the commondialog to enable font changes and get the error message...
Well, You must have added the component "Microsoft Common Dialog Control 6.0" from Project-->Components. Now, to load fonts, you have to first set the...
Thank you so much I'll try it now! Ulrike ... From: juned.chhipa To: vbhelp@yahoogroups.com Sent: Sunday, January 25, 2009 11:50 AM Subject: [vbhelp] Re: no...
depends with dblistbox you need less code but be careful how you link it in the properties. also dbcombo. with normal basic listbox coding is a schlepp and...
hehe, Glad it worked!!! Best Wishes. Â Regards, Juned Chhipa ________________________________ From: Ulrike Haupt <rica@...> To: vbhelp@yahoogroups.com...
Hi I will write the list on the vb6 properties windows. I just want to know how to get the choiced value, only. Thank you Rgs Henrique A Cunha ...
listbox.text provides the value that has been clicked example Private Sub List1_Click () dim TextValue as String Textvalue = List1.Text End Sub ... From:...
Hi, I am developing a small usercontrol that can be used as a loading indicator. As seen in Forefox or youtube when you want the user to wait by showing the...
... indicator. ... showing the animated circles. ... I'm not sure exactly "how" you'd implement the animated .gif (below) into your application but this is...
Yes, But the problem is VB supports GIF but don't support the animated GIF images. I have a code which supports animated GIF, but the code is too much to be...
Hi, Maybe this one helps you :-) http://www.innosetup.com/isinfo.php Inno Setup is a free installer for Windows programs. It's not open-source but I have...
Lotus Notes has a collection of objects that allows you to use a string to refer to the index. Is there a VB6 equivalent function or a class that exists? What...
Pretend for the moment that you (or the world) had never seen Lotus Notes. And pretend that you are an employee of a company (business worker, not a...
You might use user defined type with more than one defined element. the results work like tables in a database. any element can be designated the index...
Thanks for the info but that won't solve the issue. As the Lotus example shows, it is allowing an array that allows the index to be a string not an integer. I...