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 strongm 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. Wiggis

    MFC Keyboard handler help needed please

    I have a dlg box created in MFC and i need to handle a certain key combination: CTRL+E+G+S i only know how to handle individual key presses any help would be appreciated. Cheers, Wiggis
  2. Wiggis

    BWidget Tree Binding Help

    bind <widget> <key> {command} is for mormal tk widgets but the Tree widget does not have the bind command and therefore this method does not work. BWidget Tree has two methods defined for binding events $tree bindText $tree bindImage but these only seem to accept mouse button bindings
  3. Wiggis

    BWidget Tree Binding Help

    Hi, I need to bind key events to a tree widget such as <Key-Return> but i seem to be having no luck. the standard:- $tree bindText <Key-Return> "puts $d" does not work, Any ideas? also how can i bind a mouse click onto the background of the tree. cheers for any help, Dave
  4. Wiggis

    Emulate TK widgets using C++

    unfortunatly this is the wrong way round for waht i am trying to do. This article is for embedding Tk into C++ what i want to do is embedd C++ into TK. Thanks anyway
  5. Wiggis

    Emulate TK widgets using C++

    Hi, I need a way of creating or emulating a TK widget using C++. Basically i need to embedd an app inside of tk and this seems to be the best solution and i just do not know how to do it.
  6. Wiggis

    Embedding apps inside TK

    Hi, I just want to know if it is possible to embedd a seperate executable inside a tk widget? If not how could i emulate a TK widget in C++?? Anyone??
  7. Wiggis

    command line parameters

    the int main(int argc, char* argv[]) method stores all command line arguments in the argv[] array you can then access them the same way you would normally access members of an array, just make sure the parameter exists before you try and access it
  8. Wiggis

    New to c++ - how to check if input is float or string ?

    you could try this, (a bit easier than trying to use CString) char* n; cout << &quot;Hi Start Inputting the values (10# Max - Enter 'end' to End) \n\n\n&quot; ; for (i=0;i<10;i++) { cout << &quot;Enter No &quot; << i+1 << &quot; : &quot; << &quot; &quot; ; cin >> n; if (n ==...
  9. Wiggis

    AnsiString in Visual C++ ?

    AnsiString is a Borland Data Type that is not supported by Visual C++ and unfortunately you probably will have to change all occurances and update the methods called on them as most of them don't exist outside of Borland. as apatterno said one alternative is to use the STL regards Dave
  10. Wiggis

    Does C++ always run in DOS?

    try getting hold of Visual C++ and create a sample hello world Win32 Application, it will have all of the base code you need for creating a window. this can be much simpler than trying to understand how the author of a book approaches the task.

Part and Inventory Search

Back
Top