Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Collin

    Multiline text in a List control

    Anybody know a way to show multiple lines of text as one list item in a List control, or have any suggestion on another control?
  2. Collin

    Data report that can do Shaped recordsets?.

    Anyone have any suggestions? Thanks Collin
  3. Collin

    Anyone have a solution to display a progressbar in the statusbar?

    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.
  4. Collin

    Telnet Application

    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...
  5. Collin

    Tricky logarithm

    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 '...
  6. Collin

    Reports that will do hierarchy recordsets

    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...
  7. Collin

    Threads in VB

    Write an Active X exe class to do that work, It will run in its own thread
  8. Collin

    Reports that will do hierarchy recordsets

    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.
  9. Collin

    Reports that will do hierarchy recordsets

    Anyone have any suggestions?
  10. Collin

    Running apps from CD

    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...
  11. Collin

    API -> Creating shortcuts.

    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...
  12. Collin

    Call Java Application from Visual Basic

    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.)
  13. Collin

    Client/Server XML Communication

    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
  14. Collin

    Put VB-application on hold

    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
  15. Collin

    Another Global Variables Question

    Gotta be alittle more specific for me, maybe some code snippets Collin
  16. Collin

    What exactly is a global variable?

    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...
  17. Collin

    Any advice on ways to pass a Recordset to a Client application?

    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?
  18. Collin

    ado connection string

    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...
  19. Collin

    Pmt Function - heed assistance

    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...
  20. Collin

    How to detect simultaneous left and right mouse buttons down

    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...

Part and Inventory Search

Back
Top