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....
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...
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...
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...
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...
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...
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...
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...
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...
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) ...
Hi Subhashini, ... Use a variant parameter in your function and test for variable types when it comes in: Function LoadTextBox( xTextBox ) Debug.Print VarType(...
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 ...
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...
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...
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...
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...
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...
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...
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...
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@...
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 ...
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 |... ...
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...
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...
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...
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:...