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 14239 - 14268 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14239
check out the MoveLast function of the RecordSet object. (Check the help files to get the exact syntax). Hope this helps. Alienwebmaster ... to...
Richard
alienwebmaster
Offline Send Email
Aug 1, 2005
5:21 pm
14240
Hello everyone! :-) This is the first time this has happened to me. I have a long variable I am trying to put a big number in and I guess it's too big....
HouseDad
cwcummins
Offline Send Email
Aug 2, 2005
1:19 pm
14241
To the person who is planning on multiplying a large number -- I would dim the rusult as double. That way it can accommodate the larger answer. ... Start your...
Jesus Is the Answer
halfof4is2
Offline Send Email
Aug 2, 2005
4:21 pm
14242
Ok I am a dummy! I haven't ever had to deal with this before, so I guess I always assumed that LONG was the biggest number type VB6 had. I usually always deal...
HouseDad
cwcummins
Offline Send Email
Aug 2, 2005
7:29 pm
14243
This sub routine fails on the first pass but works on every other pass. What needs to be changed? Sub FillGrids() Try ' Dim cell As DataGridCell =...
Charles Parks
cpbgark
Offline Send Email
Aug 4, 2005
4:02 pm
14244
hey any ideas of how to marshal data from unmnaged code to managed code... ive got an enumeration type in the unmanaged code which contains an array along with...
md_sabs
Offline Send Email
Aug 4, 2005
6:04 pm
14245
Hi Everyone: Are there any Canadians here? I am looking to purchase VB6 Enterprise Edition for my workplace. Any ideas? Thank you....
wheeliegirl
stephanie_su...
Offline Send Email
Aug 5, 2005
12:32 am
14246
Hi all, Please help me out in sorting an issue in VB 6. How do I create a function which takes a control array (text box or check box or whatever.) as an...
subhashini giri
subhashini_giri
Offline Send Email
Aug 8, 2005
12:36 pm
14247
I'm not really sure how you are relating the control arrays to sorting, but here's a function that changes the background of textboxes in a control array when...
Don Roberts
droberts_00
Offline Send Email
Aug 8, 2005
1:41 pm
14248
Im very new to this ! but im trying to amke a macro in excel that move to the start of a range (B7) and selects it - this all works fine but im stumped how i...
adtranzit
Offline Send Email
Aug 8, 2005
1:42 pm
14249
You don't need to pass the contents of a list box to a function. The array automatically is public to the entire form. Let's say that the function is to...
Jesus Is the Answer
halfof4is2
Offline Send Email
Aug 8, 2005
3:56 pm
14250
Hi, could anyone help me out with image transferring...Im working on Twain Compiant Scanner, ive captured the image through a pointer in VB.NET and can get the...
md_sabs
Offline Send Email
Aug 9, 2005
4:26 pm
14251
Thanks Don. This i know. I want to create a function in a class which will take a control array as an argument. For example LoadTextBox(xTextBox() as textbox) ...
subhashini giri
subhashini_giri
Offline Send Email
Aug 10, 2005
8:48 am
14252
Hi Subhashini, ... Use a variant parameter in your function and test for variable types when it comes in: Function LoadTextBox( xTextBox ) Debug.Print VarType(...
Shawn K. Hall
vb_shawn
Online Now Send Email
Aug 10, 2005
9:02 am
14253
Hey there! I am new...so don\t be surprised at my kid questions. Do you mind helping me... 1. How can i set the form according to users preference? Like he ...
saminor2002
Offline Send Email
Aug 11, 2005
9:05 am
14254
Pass it as a varient to the function and from the function use it by late binding. i.e. while you try to access the properties of the control array by applying...
surjitlimit@...
surjitlimit
Offline Send Email
Aug 11, 2005
3:01 pm
14255
Lookup "Registry functions" in the VB Help file - you can "SaveSetting"s, "LoadSetting"s, and restore your app using those. The registry is a perfect place to...
Richard
alienwebmaster
Offline Send Email
Aug 11, 2005
4:55 pm
14256
Hi, ... I just tried this with an control-array of command buttons, and it works: Private Sub Form_Load() DoSomething Command1 End Sub Private Function...
Adelle Hartley
adellehartley
Offline Send Email
Aug 12, 2005
2:02 am
14257
Dear Group Owner, i have a problem with making a package, by getting an error, which is Out-of-Date Dependency Information, MSCOMCTL.OCX C:\WINDOWS\system32 im...
maensafa
Offline Send Email
Aug 12, 2005
3:53 pm
14258
I have it so that user can copy data from a window outside the program, then paste it into the program's grid. But every time you click back on the program's...
Real Name
halfof4is2
Offline Send Email
Aug 16, 2005
1:49 am
14259
Hi Real, ... Is the other window actually closing or is it just disappearing behind your form? There are ways to intercept the mouse-leave event or whatever...
Shawn K. Hall
vb_shawn
Online Now Send Email
Aug 16, 2005
2:49 am
14260
Hi. You can use the following instead. Sub ControlArray(ctrl as control) if ctrl.index =1 then . . . Your Code Here . . . endif End Sub You will not get any...
surjitlimit@...
surjitlimit
Offline Send Email
Aug 16, 2005
6:45 am
14261
i wish to know how many vb controls could be placed on a single form is there a limit or not regards santo Confidentiality Notice: This transmittal is a...
%% Santo %%
nsjames@...
Send Email
Aug 16, 2005
8:30 am
14262
Yes, there is a limit to place controls on a form. You can overcome it by making a control array of controls of same types. Or if dont want to do this then at ...
surjitlimit@...
surjitlimit
Offline Send Email
Aug 16, 2005
9:00 am
14263
Thanks Yaar....
subhashini giri
subhashini_giri
Offline Send Email
Aug 16, 2005
4:22 pm
14264
What would be the select statement for choosing the children that belong to a parent when a child can have children? Sample table data Parent | Child |... ...
Charles Parks
cpbgark
Offline Send Email
Aug 16, 2005
9:32 pm
14265
is it for oracle or sqlserver? if oracle youre in luck, they have the "connect by prior" keyword that can output this result in one sql statement. for sql...
Dennis
webdevwhiz
Offline Send Email
Aug 17, 2005
1:10 am
14266
The maximum number of controls u can place on a VB form is 255. %% Santo %% <nsjames@...> wrote: i wish to know how many vb controls could be placed...
subhashini giri
subhashini_giri
Offline Send Email
Aug 17, 2005
6:55 am
14267
hello, I'm using VB6 with CR 8.5 after I run the program it generate many vb##.tmp file in every folder that you can guess.I don't how I can avoid making the...
vahid
hassani_vahid
Offline Send Email
Aug 17, 2005
10:13 am
14268
This is for SQL Server. ... From: vbhelp@yahoogroups.com [mailto:vbhelp@yahoogroups.com] On Behalf Of Dennis Sent: Tuesday, August 16, 2005 8:07 PM To:...
Charles Parks
cpbgark
Offline Send Email
Aug 17, 2005
12:21 pm
Messages 14239 - 14268 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