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...
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 15764 - 15793 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15764
Hi, HELLO I'm going to explain my probleme I wish you can help me. For my training course, I must carry out an application under VISUAL BASIC STUDIO 2008. This...
hk.8758
Offline Send Email
Aug 2, 2008
5:21 pm
15765
how you can store the result of min max query in a variable. ex. rs.open "Select min(fieldname) as minimun, max(fieldname) as maximun from table1 where name =...
jorge_viper57
Online Now Send Email
Sep 3, 2008
12:15 pm
15766
try   var1=rs(minimum)   it might solve ur problem ... From: jorge_viper57 <jorge_viper57@...> To: vbhelp@yahoogroups.com Sent: Wednesday, 3 September,...
Tejpal Singh
tejpal_1979
Offline Send Email
Sep 4, 2008
12:50 pm
15767
Hello, I am trying to take a large number in VB6 (2047857876) and make it look like this (2,047,857,876). The beginning number will never have spaces in it, so...
¾ ßúzzè...
ezbuzzit
Offline Send Email
Sep 4, 2008
9:28 pm
15768
dim num as double dim str as string num = 2047857876 str = format(num,"###.###.###.###.###.##")...
Caio Kinzel Filho
caiokfbb
Offline Send Email
Sep 4, 2008
11:28 pm
15769
var1=rs("minimum") or var1=rs(0) Regards, Md. Iqbal Hossain http://www.SabaSafa.com Do you need a coder?...
Iqbal hossain
iqbalcse2000
Offline Send Email
Sep 6, 2008
7:51 am
15770
what do you mean by a 'result of a query' ? functions like MIN() , MAX() return one record. for both you need two queries or one more complexed query if you...
Gil
gilparsay
Online Now Send Email
Sep 6, 2008
9:56 am
15771
anyone knows this kind of project well? Im trying to create one and have mannny difficulties. My cant get the new installation to remove the previous version...
Gil
gilparsay
Online Now Send Email
Sep 11, 2008
5:24 pm
15772
Dear All, Iam beginner in vb.net. May any help me or give an example how to to read and display dicom(.dcm) file in vb.net(pure) without using component from...
Agus Pradikta
agus_pradikta
Offline Send Email
Sep 17, 2008
1:37 am
15773
best regards.. I am archieven a Computer engineering student... I need to read barcode from an image using vb.. can anyone help me?? please give me sites or...
rachverne207
Offline Send Email
Sep 24, 2008
7:53 pm
15774
Hi All, I am using vb 6 and MS access for my application. There are certain words used in the application (about 60). I just want the possibilities to be...
Thanuja K
nuja79
Offline Send Email
Sep 29, 2008
11:32 pm
15775
I have the following problem : I have to fill a dbgrid with the results of 3 queries in the next manner : first x rows - results from query1 next y rows -...
Miron M
miron_ol
Offline Send Email
Oct 4, 2008
1:47 am
15776
use an UNION select ... From: Miron M <miron_ol@...> Subject: [vbhelp] help me please To: vbhelp@yahoogroups.com Date: Saturday, October 4, 2008, 3:52...
Tomita SERBAN
tom67ro
Offline Send Email
Oct 4, 2008
5:15 pm
15777
Just use pure vb code to return the recordsets. Load the recordsets into a flexgrid. You then have complete control over what you display. Practically every...
Rob
crombierob
Offline Send Email
Oct 5, 2008
4:21 am
15778
How to load multiple recordsets into the flexgrid ??? The other problem is that the grid what i use is truedbgrid which has the printing capability...
Miron M
miron_ol
Offline Send Email
Oct 5, 2008
1:40 pm
15779
Hi, Just a quick reply (I am in the middle of something else at the moment). Assuming that you have avoided Bound Controls, Data Controls, etc. I have two...
Rob
crombierob
Offline Send Email
Oct 5, 2008
2:47 pm
15780
PS. Can the truedbgrid be used in unbound mode ? Rob ... [Non-text portions of this message have been removed]...
Rob
crombierob
Offline Send Email
Oct 5, 2008
2:49 pm
15781
Yes, i checked in the documentation, but seems that is complicate to use it. ... From: Rob <robhp@...> Subject: Re: [vbhelp] help me please To:...
Miron M
miron_ol
Offline Send Email
Oct 5, 2008
10:25 pm
15782
Is it possible to program the Close Button? If so, how? I have written a VB6 program with an MS Access database. XP's Windows Task Manager (WTM) shows that if...
Michael Hodge
braxtoncotta...
Offline Send Email
Oct 6, 2008
6:03 am
15783
This may depend on what actions your program takes, when closing. If there are just a couple of simple actions, your solution may be as easy as moving the code...
Rob
crombierob
Offline Send Email
Oct 6, 2008
6:14 am
15784
VERY many thanks, Rob. By moving the command "End" to Form_Unload, my 6-months problem is solved! Michael...
Michael Hodge
braxtoncotta...
Offline Send Email
Oct 7, 2008
8:05 am
15785
... But your other problems are just starting!! You should never ever on pain of death end a VB application with End. If you have closed all your...
Matt
unicornssecond
Offline Send Email
Oct 8, 2008
12:41 pm
15786
Thanks for the dire warnings, Matt. Perhaps I ought to explain. The program is written in VB6 and has a MS Access database. Apart from the Home Page, there are...
Michael Hodge
braxtoncotta...
Offline Send Email
Oct 9, 2008
8:06 am
15787
You could place something like this in a bas file. . . . Public Sub UnloadAllForms() Dim oFrm As Form For Each oFrm In Forms Unload oFrm Next End Sub . . . I...
Rob
crombierob
Offline Send Email
Oct 9, 2008
8:23 am
15788
I am using vb 6.0 professional and can't find the crystal report anywhere. Any hints????...
ratso692000
Offline Send Email
Oct 9, 2008
11:22 pm
15789
Suppose I have some numbers from 1 to 10 in an array (but it could be of any size). I want them to be formatted into 3 columns (but it could be of any # of...
jim8440
Offline Send Email
Oct 12, 2008
9:20 pm
15790
I think the spaces got removed in your post. Why not use a char like * to illustrate your needs. Where is the output going to appear ? Is there an exact Column...
Rob
crombierob
Offline Send Email
Oct 13, 2008
7:42 am
15791
Thanks, Rob. A variation of your code seems to be working, although I have more testing to do. The word END is no longer used in shutting down. Windows Task...
Michael Hodge
braxtoncotta...
Offline Send Email
Oct 13, 2008
11:36 am
15792
... This code sample assumes you have a textbox and a flexgrid on your form that "each" takes up roughly half of the height of the form and the width of each...
burkleyd
Offline Send Email
Oct 16, 2008
12:50 am
15793
... (as we see on MICROSOFT WORD status bar)....>>>????? plzz tell me and also tell me that how can we access the previous record in a text boxes using random...
BILAL SOHAIL
bilal_119
Offline Send Email
Oct 23, 2008
6:34 pm
Messages 15764 - 15793 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