A quick and easy way to do that is to use a 2 band CoolBar control aligned to bottom, One panel would have the Progress bar as child, the other the StatusBar, it not elegeant, but it will give you the same functionality.
While you can use the Winsock control (or API) to get the raw binary data, you would still have to write MUCH code to translate the Telenet protocol. Its not to diffucult buts its alot of work. There are some 3rd party Telenet Controls/classes you could buy. I started to write my own for fun...
Hiya, I would really like to help, but I dont understand what your trying to do. In your code snipet below there are some problems though;
'calculate number of places
In = InputBox("Value:")
Dim Places As Integer
i = 0
k = 2 ^ i 'Will always = 1, 2 ^ 0 = 1
Do
k = k * 2 '...
Well..to avoid my spelling , lets just call them H recordsets, The easiest way to get one is in the Data Environment Designer. The are made by adding a command to a command and then relating a field in the parent command to a field in the child command.
They basically return a recordset where...
VB Data Report designer will not do hieraretical(sp) recordsets, I was asking if anyone knew of a report designer that can handle them, either one from Data Enviroment or from a Shaped SQL statement.
rvBasic
Taken from VBPJ (a magazine) from a article in the November
issue
VB.NET also includes many smaller but subtler changes:
Underlying datatypes change to become consistent with the other languages in VS.NET. For example, Longs become Integers, and Integers become Shorts.
Everything is...
Shell32 provides the functions to to manipulate Shell Links (shortcuts).
Microsoft provides a Microsoft Windows Installer and installation database API with windows, If you have some knowledge of C you could access those DLL to do the work for you. Information on The Microsoft Windows...
As I understand it, allmost and application written to the COM specifications can be used from VB no matter what the language. Some just require more tricks to make them work (Methods or functions useing pointers, signed/unsigned variables, Bitfields,Callback functions etc.)
ADO allows you to persist recordsets in the XML format, you could allways pass this info that way. But like Mike says, some more details would help.
Collin
Suspending VB is the easy part, determining when the shelled application has ended is the hard part. There is a good FAQ on that subject (4.c), or do a seach for the WaitforSingleObject API
Collin
Any variable declared as Public in ANY module in your project is "Gloabal", the only differnce is the way you would access that variable, for example.
Declared in a Code Module for myForm1
Public myVar
Declared in a Code Module for myForm2
Public myVar
Declared in a Standard Module...
I have a ActiveX exe server that I want to be able to pass recordsets to client applications. Of the many ways to pass this type of information does anybody know the pro's and concon's of each?
If I understad what your saying is that you typed that connection string into the ConnectionString property of the
ADO control's property window. If so, I think the property window assumes every thing in that property is one big text string.
Try coding the ConnectionString property in , for...
For your first question;
Dim dblIntRate As Double, dblPrincipal As Double, intTerm As Integer
dblIntRate = 7 + (lstInterest.ListIndex * 0.25) 'Saves value of interest rate selected by user
The listindex property represents the index of the array of strings in your ListBox control...
Here is a way to detect both mouse buttons being pushed useing two Timer controls
Option Explicit
Dim blnLeft As Boolean ' Left button pushed
Dim blnRight As Boolean ' Right button pushed
Dim blnBoth As Boolean ' Both buttons pushed
I used a Command button as the Control that I wanted to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.