Ok, I have a couple months before my next programming project is due. I went to the library and got about 5 books on ADO, DAO, and basic VB 6.0 stuff. These...
I only use ADO for all my database programs. I can't stand any of the
database controls, but that's my personal opinion. As for your forms, just use ...
Hi [C]. I never really understood the difference between ADO and DAO myself. I have what I think is an excellent example of database programming using ADO ...
Hihi there all... I haven't been too active in the group since I joined about a year ago... ADO(Active-X Data Object) is a very versitile means of programming...
how can i format a certain column in mshflex grid that is in a bounded state. ex. set MSHFLexgrid.datasource = rs if a date is in that column i want to make...
use the textmatrix for x=0 to mshflexgrid1.cols-1 textmatrix(0,x)=format(textmatrix(0,x),"mm/dd/yyyy") next x Rick Rose ... From: vbhelp@yahoogroups.com Date:...
Hello Frnds I have developed the application using VB and SQL Server with number of data reports. I want to change the mouse icon while executing the stored...
Screen.MouseIcon = vbHourglass Screen.MouseIcon = vbNormal Rick Rose ... From: vbhelp@yahoogroups.com Date: 2/2/2004 7:34:34 AM To: vbhelp@yahoogroups.com ...
Hi, I'm currently trying to write an error handler in sub Main() to make sure that the user has all the components my VB5 app needs, and in the right version...
Shawn has something like this on his website: http://reliableanswers.com/vb/samples.asp It's called mra_startup, I *think* it's what you are looking for. ... ...
Its probably growing a lot b/c you are probably adding and deleting a lot of data. ... From: Anchoori [mailto:anchoori@...] Sent: Friday, January 30,...
Simmy Fleischer
simmy@...
Feb 2, 2004 3:42 pm
12431
Hi, After finally completing and compiling my help files I am left with the task of actually opening it. Leaving aside all considerations of context-sensitive...
Evan, Use the WinHelp API - it's not difficult to use but here's an example:- Option Explicit Public Declare Function WinHelp Lib "user32.dll" Alias "WinHelpA"...
Can anyone tell me why this code does not print to the labels on the form. Its supposed to calculate a range and output prime numbers in the range. Had it...
or that solution or use api functions man. ... From: vbhelp@yahoogroups.com Date: Monday, February 02, 2004 04:34:32 To: vbhelp@yahoogroups.com Subject:...
Hi Muse, ... <sigh /> ... Integers have a limited range of a -32,768 to 32,767. If you're actually wanting to determine primality of a number, you might want...
THANKS RICK. Thanks and Regards, *************************** Rutuja Deshpande. ... Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! ...
hi group, I am downloading the file from the web by using the method DoFileDownload() (of win32 api), i can download the file and everything is okey, but i am...
do any one know whether we can specify the download folder path and file name explicitly by avoiding the system file dailog box , by using dofileupload()...
hi all, i am using the win32 api method PostMethod to close the window by passing the handler etc. i can close the window like this. but in my application...
Hi Shawn Thanks a lot for your comments and advice. I am a complete novice and as such need all the help I can get! I'm on the 1st year of an HNC in...
Don Roberts >> It's called mra_startup, I *think* it's what you are looking for Thanks Don for the tip :-) I'll go through the code, and see if I can use it....
Hi, DAO was the older DB access method up to VB5. ADO was the official DB access method for VB6 DAO had it's own Data Control and Data Bound controls (eg...
Thanks for your reply, Rick! BTW: I was perusing my original text, and it was NOT a textbox I searched the net on! (Duh!) It was a LISTBOX. I think VB for ...
... Are you talking about, for instance, binding a textbox to a database field so that it shows automatically when the record is read, etc? I haven't read the...