Search:

Type: Posts; User: kje11

Search: Search took 0.01 seconds.

  1. try changing if(strcmp(stat.name, secret))...

    try changing


    if(strcmp(stat.name, secret))

    to


    if(strcmp(stat.name, secret) == 0)
  2. Replies
    5
    Views
    1,077

    If your using windows, download "Dev-C++ 4.0...

    If your using windows, download
    "Dev-C++ 4.0 full package includes Mingw compiler"
  3. Replies
    5
    Views
    1,077

    try ...

    try
    http://sourceforge.net/project/showfiles.php?group_id=10639
  4. Replies
    8
    Views
    1,505

    There might be a way, but why would you want to...

    There might be a way, but why would you want to do that. if you want to change the Caption in code, you can use code like:


    Label1->Caption = "whatever";


    I don't really know if there is a...
  5. Replies
    8
    Views
    1,505

    Ok, I'll try to make it a little more detailed. ...

    Ok, I'll try to make it a little more detailed.

    1) Click on the label component.

    2) click on the form(It's the grey window that will say something like "Form1" unless you changed that). It...
  6. Replies
    8
    Views
    1,505

    You choose the TLabel component from the...

    You choose the TLabel component from the component pallete. Then you click on the form where you want to put it. You can then change the text in the label by changing the Caption property in the...
  7. Replies
    6
    Views
    1,273

    When you click new and the "New Items" Form comes...

    When you click new and the "New Items" Form comes up, you need to choose "Console Wizard".
  8. Replies
    5
    Views
    1,058

    try making a function like this: void...

    try making a function like this:

    void KeyStroke(char key)
    {
    int keycode = VkKeyScan(key);
    keybd_event(keycode, 0, 0, 0);
    keybd_event(keycode, 0, KEYEVENTF_KEYUP, 0);
    }

    this should...
  9. Replies
    1
    Views
    1,493

    1. Use the images event "OnClick" and use...

    1. Use the images event "OnClick" and use something like:

    Form1->VertScrollBar->Visible = !(Form1->VertScrollBar->Visible);

    but make form1 whatever you want to show/hide the scroll bar for
    ...
Results 1 to 9 of 9