| Thread | Last Post | Replies |
|
| Arrays | 29 Aug 2008 03:05 GMT | 11 |
1- I have two arrays Arr1 and Arr2 of sizes 100 and 25 respectively. I want to send the last 25 elements of Arr1 into Arr2, for example elements 76 to 100. Is there any way of doing this without loops, like for example; Arr2=Arr1(76)
|
| endcurrentedit clearing textboxes | 28 Aug 2008 13:13 GMT | 1 |
this is probably a stupid question, or im missing something. I have a customer info form, bound. I load with the following: -------------------------- FillDatasets() 'combo boxes
|
| the DIM Statement | 26 Aug 2008 00:28 GMT | 7 |
1- I was wondering if in VB6, there is a way to explicitly deimention variable? For example, all variables that start with "A" to be of type Double? 2- Also, is there a way to define the type of variables in a single
|
| Spy tool | 22 Aug 2008 19:20 GMT | 1 |
A couple of mnths ago I started using Winspector fro a project I was assigned to. I would like to automate some processes and would love to recreat the drag tool.( I have seen this tool on a program called Textcatch also). DOes anyone have an idea as to how to do it?
|
| ListView Vertical Scroll Issue | 22 Aug 2008 14:31 GMT | 3 |
I am using a ListView control in VB 6 but cannot get the vertical scroll bar to appear when I have many rows. I have tried different views with and without column headers but it does not work. I can only see the horizontal scroll bar. I have seen a few articles on the internet ...
|
| many checkboxes place programatically ?no scrolbar | 21 Aug 2008 23:44 GMT | 5 |
In Visual Basic 6 I am not able to place programatically variable no. of checkboxes so tha they do not run out of the form. In .NET I can place then into a "panel" and it has scrollbar Is it possible to make it work in old Visual Studio 6 ?
|
| Passing "Controls" collection to a class method not defined in .ctl file | 21 Aug 2008 23:40 GMT | 14 |
I'm trying to pass the "Controls" collection from the UserControl_Initialize() routine in my .ctl file to a class method defined in a separate module. Here's the .ctl code: Private Sub UserControl_Initialize()
|
| DataGridView.CurrentCell scrolling | 21 Aug 2008 02:37 GMT | 9 |
The documentation for DataGridView.CurrentCell states: "When you set a cell as the current cell, it will scroll into view if it is not currently displayed." Is there any way to stop this behavior?
|
| Rounding error using vbContainerSize | 20 Aug 2008 16:13 GMT | 6 |
I written a control which, internally, uses the scale mode Pixel However, on my interface, I want to show all values in the scale mode of my parent. Therefore, I wrote some conversion functions, which basically do
|
| Keeping State in Controls | 20 Aug 2008 02:25 GMT | 2 |
I have a few checkboxes on a form. User can check some of these checkboxes and can close the form. When user opens the form again, I would like to show what they selected when the form was open first time. Is there an easy way to do that?
|
| Binding ComboBox | 19 Aug 2008 14:31 GMT | 1 |
I am using VS2008 and an MS Access database. On a form, I am looking at records from a table, say Equipment. I have i.a. 2 comboboxes on this form showing manufacturers of PartA and PartB. I have separate tables for manufacturers of PartA and PartB. Both have columns ...
|
| communication between vb and java | 18 Aug 2008 05:41 GMT | 4 |
Hi everybody,I am strugglling with a problem for a whole day,but still cannot resolve it.Please give me some suggestion. I want a client (written by VB6.0) to communication with a server(written by JAVA).In the debug mode, in the server side ,the server call the java
|
| Dimensionsing of variables | 13 Aug 2008 22:32 GMT | 5 |
I was wondering if in VB6 (or .NET) there a way of dimensioning variables based on the value of other variables. For example; Dim X as Double X=Val(Text1.Text)
|
| Update a control on form 1 from a sub in form 2 | 11 Aug 2008 12:48 GMT | 1 |
Hello: I'm trying to update a control (e.g. lstBOX.items.add(string)) from a form (e.g. frm2) where the control resides in a different form (e.g. frm1). In VB6 this is trivial but I can't figure out how to do it in VS2003. I've tried fully referring to the control (e.g. ...
|
| Database field in control | 08 Aug 2008 06:12 GMT | 1 |
All: Would appreciate some help in filling a textbox with a field from an access database query where the field is part of a table alias. there is two identical tables in the query, but they are distinct from each other
|