Search the web
Sign In
New User? Sign Up
vbhelp · Visual Basic Help Center Forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12420 - 12449 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12420
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...
HouseDad
cwcummins
Offline Send Email
Feb 1, 2004
10:10 pm
12421
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 ...
Rick Rose
roseri1997
Offline Send Email
Feb 1, 2004
10:53 pm
12422
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 ...
Matt Lorenz Jr
mattlrnz
Online Now Send Email
Feb 1, 2004
10:54 pm
12423
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...
Jim
jimbobob21
Offline Send Email
Feb 2, 2004
3:21 am
12424
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...
Jhun Boco
jovoh
Offline Send Email
Feb 2, 2004
4:17 am
12425
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:...
Rick Rose
roseri1997
Offline Send Email
Feb 2, 2004
4:30 am
12426
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...
Rutuja Deshpande
rutuja_pande
Offline Send Email
Feb 2, 2004
12:34 pm
12427
Screen.MouseIcon = vbHourglass Screen.MouseIcon = vbNormal Rick Rose ... From: vbhelp@yahoogroups.com Date: 2/2/2004 7:34:34 AM To: vbhelp@yahoogroups.com ...
Rick Rose
roseri1997
Offline Send Email
Feb 2, 2004
12:54 pm
12428
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...
edward_van_h2002
edward_van_h...
Offline Send Email
Feb 2, 2004
1:08 pm
12429
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. ... ...
Don Roberts
droberts_00
Offline Send Email
Feb 2, 2004
2:17 pm
12430
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@...
Send Email
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...
Dembskey, E. (Evan)
evyn
Offline Send Email
Feb 2, 2004
4:12 pm
12432
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"...
Ian Brooke
ianbrooke1
Offline Send Email
Feb 2, 2004
5:46 pm
12433
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...
dominamuse
Offline Send Email
Feb 2, 2004
8:10 pm
12434
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:...
Radu
radulicul2000
Offline Send Email
Feb 2, 2004
8:10 pm
12435
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...
Shawn K. Hall
vb_shawn
Online Now Send Email
Feb 3, 2004
12:57 am
12436
THANKS RICK. Thanks and Regards, *************************** Rutuja Deshpande. ... Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! ...
Rutuja Deshpande
rutuja_pande
Offline Send Email
Feb 3, 2004
5:15 am
12437
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...
Anchoori
sree52
Offline Send Email
Feb 3, 2004
8:24 am
12438
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()...
Anchoori
sree52
Offline Send Email
Feb 3, 2004
9:57 am
12439
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...
Anchoori
sree52
Offline Send Email
Feb 3, 2004
10:28 am
12440
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...
dominamuse
Offline Send Email
Feb 3, 2004
8:00 pm
12441
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....
edward_van_h2002
edward_van_h...
Offline Send Email
Feb 3, 2004
8:01 pm
12442
Hay there, Let me introduce myself. A few years ago I got an brand new PC at my workplace. On it MSOffice was installed. I became fascinated by the...
egodijns
Offline Send Email
Feb 3, 2004
8:01 pm
12443
If you have any questions about it or difficulties with it, I'm sure Shawn will be more than happy to answer for you - he wrote it. Don ... -- ...
Don Roberts
droberts_00
Offline Send Email
Feb 3, 2004
8:16 pm
12444
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...
crombierob
Offline Send Email
Feb 4, 2004
1:43 pm
12445
guys...can you explain how to use an ADO in visual basic using acess as a database...thanks...........
raizen_23
Offline Send Email
Feb 4, 2004
7:11 pm
12446
Dim dbs As ADODB.Connection Dim rst As ADODB.Recordset Private Sub Text1_LostFocus() Set dbs = New ADODB.Connection Set rst = New ADODB.Recordset ...
Mr Document
kaghazaat
Offline Send Email
Feb 4, 2004
7:38 pm
12447
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 ...
HouseDad
cwcummins
Offline Send Email
Feb 4, 2004
8:49 pm
12448
Thanks for the link, and the group info... As well to the others that replied. I will peruse it all when I get a chance! [C]...
HouseDad
cwcummins
Offline Send Email
Feb 4, 2004
8:52 pm
12449
... 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...
HouseDad
cwcummins
Offline Send Email
Feb 5, 2004
2:32 am
Messages 12420 - 12449 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help