Search the web
Sign In
New User? Sign Up
visualbasic6programming · VB help for all versions!
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 29442 - 29471 of 32051   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29442
Microsoft Hierarchical Flex Grid 6.0 (OLE) Microsoft FlexGrid Control 6.0 What are the differences between these two? Regards. ... Looking for a deal? Find...
my education
myeducation5001
Offline Send Email
Sep 1, 2007
9:54 am
29443
The only time I use the Hierarchical Flex Grid over the regular Flexgrid is when I am using the database with ADODB. It will display the recordset a lot...
Rick Rose
roseri1997
Offline Send Email
Sep 1, 2007
2:53 pm
29444
This is good. Thank you very much. Rick Rose <wolfrose32@...> wrote: The only time I use the Hierarchical Flex Grid over the regular Flexgrid is...
my education
myeducation5001
Offline Send Email
Sep 2, 2007
3:32 am
29445
' Does anyone here who can guide or give me some good points or links ' for MsComm + YModem protocol programming? ' Basically I need to read the data directly...
George
georgeoro
Offline Send Email
Sep 2, 2007
12:06 pm
29446
Hi All, Set conn = New ADODB.Connection string = "Provider=Microsoft.jet.oledb.4.0;Data source = C:\Database\Track.mdb" conn.Open string Set temprs = New...
my education
myeducation5001
Offline Send Email
Sep 2, 2007
12:39 pm
29447
Hi guys, I have used the SSTab control in my form. But am not able to change the background colour of tab strip. Is there any way to change the back ground...
Murli Deva
devamurli
Offline Send Email
Sep 3, 2007
8:03 am
29448
Hi guys, Go to Prpoerties of SSTab and change the coloue very easy. ... change the background colour of tab strip. ... diff colour for each tab. ... how, go to...
humsafar_ak
Offline
Sep 3, 2007
8:33 am
29449
Unfortunately you can't. The only way you can add color to the tabs is by adding a container control like the picture box or frame and set its back-color....
abhijit_dutta2003
abhijit_dutt...
Offline Send Email
Sep 3, 2007
9:32 am
29450
I have finally go around to putting the PictureBox 'Gauge' code into (the beginning of) an app. Boy, it's amazing how many bugs can be found, and indeed not...
Michael Malone
solarquark
Offline Send Email
Sep 3, 2007
6:20 pm
29451
try this one: set dbgrid.datasource = temprs my education <myeducation5001@...> wrote: Hi All, Set conn = New...
Daniel B. Doromal
dbdoromal
Offline Send Email
Sep 4, 2007
1:22 am
29452
I would like to own my own SQL server that would run on my machine. I am not looking for freeware I want to buy. ... that wthr u want u work wid sql server or...
minnie_1ca
Offline Send Email
Sep 4, 2007
3:57 am
29453
Dear all, my client is currently using Win 2003 enterprise 32 bit OS now they are upgrade it to 64 bit os , now our application is in vb 6.0 with oracle...
nitin kalyankar
kalyankar_nitin
Offline Send Email
Sep 4, 2007
6:53 am
29454
Dear nitin i don't know oracle works or not but vb6.0 version product perform well as it performs in other os nitin kalyankar <kalyankar_nitin@...>...
Ajay KN
knajay_dotnet
Offline Send Email
Sep 4, 2007
8:26 am
29455
visual basic exe files should work as windows server 64bit can run 32bit applications also. ... they are upgrade it to 64 bit os , now our application is in...
abhijit_dutta2003
abhijit_dutt...
Offline Send Email
Sep 4, 2007
9:35 am
29456
I want to learn Visual Basic basics for my project please sent me the initially startup or teach basic thorouly to my or send teaching guide program in windows...
Johi
plugtrayphon...
Offline Send Email
Sep 4, 2007
11:22 am
29457
thanks for rply but i found form various web site that the Dll which are created in 32 bit will not work in 64 bit in my project we use some dll client ask...
nitin kalyankar
kalyankar_nitin
Offline Send Email
Sep 4, 2007
1:05 pm
29458
Im developing a database project, i will be using vb.net 2003 and Access. My question is how to use two or multiple tables from a database and set its...
Marlon Tambungui
mgt_valkyrie
Offline Send Email
Sep 4, 2007
4:59 pm
29459
Hi It says 'automation not allowed' while running this code. Any other way? Regads. "Daniel B. Doromal" <dbdoromal@...> wrote: try this one: set...
my education
myeducation5001
Offline Send Email
Sep 5, 2007
3:36 am
29460
Step by Step Visual Basic 6 tutorial for beginners explained with source codes http://www.freetutes.com/VisualBasic...
ilasabba
Offline Send Email
Sep 5, 2007
5:12 pm
29461
Hello Everyone, Im looking for a code that can manipulate date strings text1= 12/1/2007 become like this text2=12 text3=1 text4-2007 Thanks for your help... ...
malaydiwako
Offline Send Email
Sep 5, 2007
10:33 pm
29462
One of the easiest way is to use the split() function and use "/" as the delimeter. varDate = split(text1,"/") text2 = varDate(0) text3 = varDate(1) text4 =...
Adrian Landicho
ianicbass
Online Now Send Email
Sep 5, 2007
10:49 pm
29463
alright.. salamat. Adrian Landicho <ian@...> wrote: One of the easiest way is to use the split() function and use "/" as the delimeter. varDate =...
malaydiwako
Offline Send Email
Sep 5, 2007
10:53 pm
29464
hi, i got an variable not defined error when tried to compile it thanks Adrian Landicho <ian@...> wrote: One of the easiest way is to use the split()...
malaydiwako
Offline Send Email
Sep 5, 2007
11:08 pm
29465
Add this: Dim varDate As Variant _____ From: visualbasic6programming@yahoogroups.com [mailto:visualbasic6programming@yahoogroups.com] On Behalf Of malaydiwako ...
Adrian Landicho
ianicbass
Online Now Send Email
Sep 6, 2007
12:16 am
29466
Malay Maybe something like this.. text2=Month(text1) text3=Day(text1) text4=Year(text1) This approach, however, would require that text1 be a date, not a...
spooboy54
Offline Send Email
Sep 6, 2007
12:17 am
29467
that is possible, i do it in VB in 3310 using FBUS protocol, set your MSComm to 115200,8,n,1 Krishan Sharma <crazy_punjabi@...> wrote:...
Enero Bobby
bobby_enero1
Offline Send Email
Sep 6, 2007
1:19 am
29468
You Can Use day,month,year function for format ex text1.text=day("25/12/2007") text2.text=month("25/12/2007") text3.text=year("25/12/2007") or ...
Tamer Shawky Mazin
tamershawky
Offline Send Email
Sep 6, 2007
8:13 am
29469
use this code.. text1= 12/1/2007 text2 = format(cdate(text1),"mm") text3=format(cdate(text1),"dd") text4=format(cdate(text1),"yyyy") ... From: malaydiwako...
undisclosed undisclosed
digitallsupe...
Online Now Send Email
Sep 6, 2007
11:54 pm
29470
Good day to everyone, Guys, I need suggestions and comments about this matter. Does anyone had encounter the error 1400? I designed a monitoring system for...
Rex Calanuga
rexzel0230
Offline Send Email
Sep 7, 2007
8:00 am
29471
For connecting to databases, I recommend this quick resource. http://www.connectionstrings.com I am assuming that you are familiar with ADO in VB6. Both the...
Chris
kalistespc
Offline Send Email
Sep 7, 2007
12:13 pm
Messages 29442 - 29471 of 32051   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