User Profile

Collapse

Profile Sidebar

Collapse
chezz
chezz
Last Activity: Jul 26 '07, 07:00 AM
Joined: Jun 26 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • chezz
    replied to Using API to set focus to application
    I know that vb 6 that if u have a text box or something you can do this

    Code:
    TextBox.SetFocus
    This places the focus on the specified object in this case the text box.

    It should be something similar to vb 2005
    See more | Go to post

    Leave a comment:


  • I tried using the modal thing when displaying a form like this

    Code:
    dialog.show vbmodal, me
    but it doesn't force you to deal with this form before you can get rid of it.

    thx in advanced
    See more | Go to post

    Leave a comment:


  • Hey sorry if last post was unclear, the windows lock (windows key + L) i basically wanna replicate this. I know how to lock all input from Keyboard and mouse but what i don't know is how to say type a password and get the vb application to recognize this while everything is still locked.
    See more | Go to post

    Leave a comment:


  • chezz
    started a topic Blocking User input until password is entered

    Blocking User input until password is entered

    Hey i know its possible to block the users input from the keyboard and mouse, and to unblock but i was wondering how to check for users input and to compare it against a password (validate it) while the user's input is blocked.

    Thx in advanced
    See more | Go to post

  • chezz
    replied to C++ editing registry and permission
    in C
    Hey i know microsoft is a good resource but im not really trying to do this in visual c, im just doing command prompt windows style. Any links to tutorials or code examples would be great thanks. Also i looking for a registry search function
    See more | Go to post

    Leave a comment:


  • chezz
    started a topic C++ editing registry and permission
    in C

    C++ editing registry and permission

    Hey i was wondering if anyone had sample code besides using the system function to delete registry keys and also if anyone knows how to change a permission on a specified key.
    See more | Go to post

  • chezz
    replied to c++ splitting strings but keeping the delimiter
    in C
    Thanks for all the advice i will try them all and see which method works best, thanks again
    See more | Go to post

    Leave a comment:


  • chezz
    replied to c++ splitting strings but keeping the delimiter
    in C
    Let me explain it a bit better, i made a decimal to binary converter and with the final output if i used a small decimal number than i will get this 00000000001010 and i wanna chop of the zeros when it reaches one but keep the one.

    Also i do use string bla; , for strings rather than char bla [8]; it just i'm trying to find a viable option for doing this.

    Thanks in advanced
    See more | Go to post

    Leave a comment:


  • chezz
    started a topic c++ splitting strings but keeping the delimiter
    in C

    c++ splitting strings but keeping the delimiter

    Hey i looked at some earlier discussions on this topic and they seem a bit complex i found this code example on another site -

    Code:
    char str[]   = "200.0.0.90-200.0.0.223";
    
    char *first  = strtok(str, "-");
    
    char *second = strtok(NULL, "\0");
    and i was wondering if it was possible to keep the delimiter in other words in this example the hyphen. Because...
    See more | Go to post

  • chezz
    replied to Increase the amount Len can handle
    Thanks for the idea, ill try that
    See more | Go to post

    Leave a comment:


  • chezz
    started a topic Increase the amount Len can handle

    Increase the amount Len can handle

    Hey is was just wondering if its possible to increase the len, for when opening a file so that you can read more.
    Code:
    Open Filename for random as #4 len = bla
    Where i have len = bla, len can only equal a maxium of the length of a integer, 32650 or whatever. I was wondering if anyone knew how to increase this ???
    Thx in advance any help would be greatly appreciated.
    See more | Go to post

  • Hey i know that you can leave string undemensioned but im using a specific algorithm (mid$ function) to strip excess spaces out of a string. But don't worry i figured out a way around it. Thx anyway
    See more | Go to post

    Leave a comment:


  • chezz
    started a topic Changing the length of a string at runtime

    Changing the length of a string at runtime

    Hey I'm a Newb and i do software at school, im currently working on a vb 6.0 remote connection program. I need to change the length of a string at runtime, i'v already looked at redim for arrays, or using another string but i cant dimesion it with a variable.

    Example i need to do this
    Code:
    dim a as string * variable
    or to some how redim.

    any help with this or an alternate method would be much...
    See more | Go to post
No activity results to display
Show More
Working...