Forum: Visual Basic 4 / 5 / 6 Jan 25th, 2007 |
| Replies: 1 Views: 1,477 My mouse won't let me scroll through pages of my code in VB6. It works with other apps like MS Word or Explorer |
Forum: Visual Basic 4 / 5 / 6 Jun 30th, 2006 |
| Replies: 4 Views: 5,046 Excellent. Makes sense. Thanks for the update. |
Forum: Visual Basic 4 / 5 / 6 Jun 30th, 2006 |
| Replies: 4 Views: 5,046 Thanks for your reply.
I looked at that link. Not sure it helped me a hell of a lot. If I have to do a bubble sort, then I can work that out. But why does the flexgrid sort work on non-dates. Does... |
Forum: Visual Basic 4 / 5 / 6 Jun 30th, 2006 |
| Replies: 4 Views: 5,046 I have a 5 column flexgrid. I want the user to click a column and get the grid sorted by that column. Works fine for non-date collumns. For date columns, I firstly loop through all rows changing them... |
Forum: Visual Basic 4 / 5 / 6 Jun 9th, 2006 |
| Replies: 12 Views: 5,667 Microsoft Agent API ? Where can I find it ? And how do I use it ? Just want to pass, say, 6 to a control, and hear it say six. |
Forum: Visual Basic 4 / 5 / 6 Jun 9th, 2006 |
| Replies: 12 Views: 5,667 I just want a simple text-to-speech facility. I just want a digit to be spoken. I'm sure it can be done with an OCX. Could play a wav file, but want this ability within an exe. |
Forum: Visual Basic 4 / 5 / 6 May 21st, 2006 |
| Replies: 2 Views: 4,769 Thanks for that. I guess you confirmed for me what I thought was the case. It is not important enough to use the api call. |
Forum: Visual Basic 4 / 5 / 6 May 20th, 2006 |
| Replies: 2 Views: 4,769 VB6 recognises beep. Are there any other sounds ? |
Forum: Visual Basic 4 / 5 / 6 May 11th, 2006 |
| Replies: 1 Views: 1,561 I am the only user of this machine, and would like to play with Visual Source Safe. I am therefore the Admin person. How can I register myself as a valid user ? I want to have my VB6 apps covered by... |
Forum: Visual Basic 4 / 5 / 6 May 6th, 2006 |
| Replies: 1 Views: 3,670 I want to create popup menu. There will be a variable number of items in the popup menu (dont know how many). If an item is clicked, some action might be performed (I'll work that out), but a... |
Forum: Visual Basic 4 / 5 / 6 Apr 26th, 2006 |
| Replies: 6 Views: 2,173 ..I agree. Not sure what else I can do, but I'll work on it. I'll tell you if I come up with anything.
Regards
Robert |
Forum: Visual Basic 4 / 5 / 6 Apr 26th, 2006 |
| Replies: 6 Views: 2,173 Thank you for your detailed response. I didn't think I could just grab the entire file in one statement. If I can do that, I could just do the following...
bolFound = instr(strAllWords," " &... |
Forum: Visual Basic 4 / 5 / 6 Apr 26th, 2006 |
| Replies: 6 Views: 2,173 Thanks for the quick reply. Yes, that makes sense. But how can I read the initial file to put a newline between each word. This assumes that I can read the file bit my bit. But if I can do this to... |
Forum: Visual Basic 4 / 5 / 6 Apr 26th, 2006 |
| Replies: 6 Views: 2,173 I would like to create a spell check facility. I have a huge flat file of words. This file has no cr/lf. How should I do this ? I think I want to read this file say 500 characters at a time. I'll... |
Forum: Visual Basic 4 / 5 / 6 Apr 18th, 2006 |
| Replies: 1 Views: 3,381 I'm using VB6. I want to create a small app that sets the Marquee text, and wait time. I just want to avoid the drama of navigating through Control Panel / display / screen saver / settings. I often... |
Forum: Visual Basic 4 / 5 / 6 Sep 27th, 2005 |
| Replies: 11 Views: 20,570 Hi Mark
Here are the methods I get from the drop-down list
CloseIt
ColumnExists
DateDelim
GetColumnAttributes
GetColumnCount
GetColumnName |
Forum: Visual Basic 4 / 5 / 6 Sep 27th, 2005 |
| Replies: 11 Views: 20,570 Hi Mark
My open is...
Set objDB = New clsDataSource
objDB.OpenIt (strFile)
The class looks like..
clsDataSource(ADODataSource.cls)
Is that enough to tell you what I... |
Forum: Visual Basic 4 / 5 / 6 Sep 27th, 2005 |
| Replies: 11 Views: 20,570 Thanks for your answer Mark. I would like to do what you suggest, but I am missing something here. My object doesn't have MoveNext etc in it's list of methods. Do I have to open the database with a... |
Forum: Visual Basic 4 / 5 / 6 Sep 19th, 2005 |
| Replies: 11 Views: 20,570 Hi
Thanks for the quick reply. However, the tricky bit is how to get the difference between dates where the dates are in different records from an SQL SELECT. I'm going through a "Do Until... |
Forum: Visual Basic 4 / 5 / 6 Sep 19th, 2005 |
| Replies: 11 Views: 20,570 Hi
In my VB program, I am going through a database, adding each row/record to a listview. One of these fields is a date. For each row/record, I want to get the difference in days between that... |