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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by simmeone

  1. simmeone

    Problem with Video Texture

    Hi all, I have a problem with a video that rendert on a texture. I use the sample from Microsoft DirectShow-Samples. Stand-alone all works fine, the video is playing correct on the texture, no problems! After I inserted the video-renderer-code into my project I got problems. The video is play...
  2. simmeone

    Mousemove and find a button

    Hi ! I think you're right ... I will build my own class and try it ... thX a lot ... Regards SiM
  3. simmeone

    Mousemove and find a button

    hmm ... I get another tip, that I should work with WM_NCHITTEST but I really don't know what I should do there ... When I work with WM_NCHITTEST suddenly nothing works correctly ... Have anyone a idea ? Regards SiM
  4. simmeone

    Mousemove and find a button

    Hello. I have build a Win32 API program, with a static and a button window. In WM_MOUSEMOVE I tray to find the to window and post a message when the mouse-cursor is over the static or button window. With the static window it works very fine. The button window is ignored but when I make a static...
  5. simmeone

    How I can give an Button a other color ?

    Hi palbano, that's a very good link but you give me a lot of hard work, now I have to puzzle this into the Win32 API. But thank you very much. It seems, that this problem, to give buttons and texts other colors is not so trivial. Oki dok. SiM
  6. simmeone

    How I can give an Button a other color ?

    Hi there,, how I can give an Button and his text an other color, for exampel, the main-window have an white background and there is an button of this window. This button should get the color "blue" and the text inside for example "red". How I can do it in the Win32 API not...
  7. simmeone

    Status Bar with C/C++

    Hi there, in the MSDN is a good (?) sample of a "create a status bar". But the first error ist that the source lpParts = LocalLock(hloc); is not correct. The compiler appears a error-message, that a void* can not change into an int*. OK I make a casting than, all is OK. Now I call my...
  8. simmeone

    Database

    Hi hnd, I'm very interesting in a source example. I need a example to connect in a DataBase, set SQL commands like SELECT * FROM bla ... and modify a DataBase. When it is in ANSI C it would be very great. SiM You can email me: virtual.studios@gmx.net Thanks a lot.
  9. simmeone

    formated edition

    Hi, the for-loop is not the problem, that is all ok. Your description is for MFC, I need this in Win32 API. Can u say me, how it looks like there ? SiM
  10. simmeone

    Database

    @dexters, I can email you the source, when u want. Is it OK ?! SiM
  11. simmeone

    formated edition

    Hello, I have a problem in my Windows App. I want a formated edition in a Edit Window. In ANSI C it is easy for example: for ( int i = 0; i < 100; i++ ) printf ( &quot;%d\n&quot;, i ); on screen appear: 1 2 3 and so on. The same I...
  12. simmeone

    Database

    Hmmm ... know I the problem, because I have the same, I realy search for a ANSI C example to connect to a Database. At the moment I have programmed with C++. When you find any source, can you please email me ? Thank you. SiM
  13. simmeone

    Database

    Hi, I have a source in C++ to connect to a DataBase over the ODBC, when you're interesting, you can write a mail. SiM
  14. simmeone

    a class struture to a typedef structure

    Hello, I have a question, is it possible, to write a C++ class structure to a ANSI C typedef structure ? And what I have to heed ? I have a class structure in this form: class ODBC_Class { public: HENV EnvHandle; etc. ... public: ODBC_Class ( ); // Constructur...

Part and Inventory Search

Back
Top