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

    Property Sheet apply button

    Hi all, I'm having trouble enabling the Apply button in a property sheet. I know that I need to use the PropSheet_Changed macro, the problem is that I don't know how to get the two window handles (of the page and the property sheet). One of them must be passed to my function (hDlg) but I don't...
  2. MrSparkle

    How do I create my own DLLs in VB4?

    I have VB4 Enterprise, and I want to know how I can make my own DLLs. I have a module with various subs and two modal forms, what do I have to change to make this project into a DLL? If this helps, I have made an encryption program. The first modal form asks for an encryption key, the second...
  3. MrSparkle

    How do I send text from VB4?

    How do you intend to send this information? Through DDE, TCP/IP or any other protocol? TextBoxes have DDE support built in: providing your java application is running on the same computer and can use DDE then you may do this. If you want a protocol like TCP/IP, IPX etc. then you can find an...
  4. MrSparkle

    Does dll's depend on machine configurations...

    I would think that if the DLL uses objects, programs etc. that rely on other DLLs that they are required. If they are not there and your DLL uses something that depends on it, it won't work. I'm not an expert on DLLs, but I think this is correct... "For Lucky Best Wash Use Mr Sparkle."
  5. MrSparkle

    Three-Dimensional Arrays

    A 10x10 grid? Maybe what you really want is a two-dimensional array instead. I'm not sure how you intend to read diagonally, but here is how you declare an array: Dim Array(10, 10) As String This declares a two-dimensional array of 11 * 11, a total of 121, with Option Base 0 (the default)...
  6. MrSparkle

    Minimizing to the taskbar

    if you want to minimise a form, use this in an event (commandbutton/menu click?) [colour red]Form1[/colour].WindowState = 1 [colour green]' Minimise the form.[/colour] Replace the red text with the name of the form you want to minimise. To restore it again, use this: [colour...
  7. MrSparkle

    Need help with making a label using variables

    MiggyD's right, but you can shorten it down to a single line if it helps. Label1.Caption = "The " & List1.Index(List1.ListIndex)& "is red."
  8. MrSparkle

    putting space delimited text into an array

    Is there a way to put text like this: (without the quotes, imagine it as a string) "talk Person hello there" into a string (or variant) array, like this: MyString(0) = "talk" MyString(1) = "Person" MyString(2) = "hello" MyString(3) = "there&quot...

Part and Inventory Search

Back
Top