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

Search:

Type: Posts; User: alone882

Search: Search took 0.02 seconds.

  1. Replies
    23
    Views
    13,727

    Re: Press Enter Twice

    Finally I figure out how to solve this problem, thank you Igor
  2. Replies
    23
    Views
    13,727

    Re: Press Enter Twice

    Pls somebody help :/
  3. Replies
    23
    Views
    13,727

    Re: Press Enter Twice

    Sry, but this code wont work I try


    switch( Key )
    {
    case 'VK_RETURN':
    {
    pressCount = ++pressCount % 2 }
    if (pressCount != 0)
    {
  4. Replies
    23
    Views
    13,727

    Re: Press Enter Twice

    Ok I have this script


    int pressCount = 0;
    void __fastcall TForm1::ListBox1KeyPress(TObject *Sender, char &Key)
    {

    switch( Key )
    {
    case 'VK_RETURN':
  5. Replies
    23
    Views
    13,727

    Re: Press Enter Twice

    But how about - CodeGuru Forums > Visual C++ & C++ Programming > Visual C++ Programming ?
  6. Replies
    23
    Views
    13,727

    Re: Press Enter Twice

    The :ListBox1KeyPress method takes a pointer to a TObject called Sender. Mostly, every event handler, in c++, will have at least a Sender parameter. When the button is clicked, the event handler...
  7. Replies
    23
    Views
    13,727

    Press Enter Twice

    Hi, I`m new here and, of course, have a small problem.
    I need to create a program with VC++ 6 Builder where:
    Press ENTER once - open picture,
    Press ENTER Twice - start a music.

    I can`t figure...
  8. Replies
    1
    Views
    3,232

    Windows 7 problem

    Hi All,
    have the same problem again. I can`t run my application on Windows 7. My appliaction use MSINET.OCX and TABCTL32.OCX
    I create batch file that run as administer privilegies and copy this...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured