CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Mirco Muck

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    4,485

    Re: VB, Net Send, and the command prompt

    Let's say your TextBox's called TextBox1 (VB Standard). Do this to send your Message:


    Shell ( "cmd.exe /c net send * " & textbox1.text, vbminimized )



    This will start cmd.exe (WinNT/2K...
  2. Replies
    0
    Views
    645

    Multilanguage TreeView's

    I try to code a program in VB witch is completly Multilingual. To archive this I want to use Unicode. For TextBox, Label, etc. this all works real fine, but these TreeView's try to make me mad. When...
  3. Thread: Datetime

    by Mirco Muck
    Replies
    2
    Views
    594

    Re: Datetime

    Do this:

    dim temp as date
    dim h as long
    dim m as long
    temp = date2-date1 ' Calc the difference
    h=hour (temp) ' get the Houres
    m=minute (temp) ' get the Minutes
  4. Replies
    3
    Views
    829

    Re: VB6 and UNICODE

    Do you copy the Text into the VB Module Editor? This little thingy does not support Unicode directly. You will have to convert Unicode to ANSI Two-Byte Characters with StrConv in Excel VBA. Then you...
  5. Replies
    2
    Views
    566

    Re: TreeVeiw & column Headers

    To Assign Text to a second (or third...) Column in a ListBox you must first add a item to the list box.

    listbox1.additem "First Column Text", 0



    Be sure to increase the value 0 for every...
  6. Replies
    4
    Views
    1,595

    Re: Unicode in Form Titles

    I will try another way.
    Does someone know a example where a VB-Project shows Non-Ascii-Characters (i.e. Katakana, Kanji, Kyrillic, ...) in its Window Title and could provide a Download-Link.
    Thanks...
  7. Replies
    4
    Views
    1,595

    Re: Unicode in Form Titles

    Maybe I'm to dumb or somewhat but it wouldn't work for me. The Unicodes are all correct converted (even w/o strconv), but i still get only "???"
    My intention is that the API-Function...
  8. Replies
    4
    Views
    1,595

    Unicode in Form Titles

    Hello!

    Does someone know how i can get Unicode Character Strings into a Titlebar from a Form?
    The Unicode-String is successfully loaded from a SQL-Database, but when i try to set the Caption of...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured