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 TouchToneTommy 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: *

  • Users: josphin
  • Content: Threads
  • Order by date
  1. josphin

    drawing on picture box

    hi all, i'm trying to draw circles on a picture box as follows: Graphics dc = this.CreateGraphics(); Pen redPen = new Pen(Color.Red, 10); dc.DrawEllipse(redPen,100,100,50,50); of course the ellipse (in this case circle) is under the picture. how can i fix this ? thanx!
  2. josphin

    serialize probs...

    Hi all,... i'm building a dialog app, and now i want to write a CArray to a file and load it from one. The problem is that the CArray is initialized in the main class (CKassaDlg) and it contains object from another class i made myself (CProducten). I can't figure out in wich one of the two...
  3. josphin

    $-respond in dialog based app

    hi, i'm writing a dialog based app. I use some keyboard shortcuts with PreTranslateMessage, this all works with (euh) "keys that start with VK_" like the function keys, escape, delete, ... but not with normal letters. I'd like to redirect to a function when the dollar key is pressed...
  4. josphin

    $-respond in dialog based app

    hi, i'm writing a dialog based app. i use some keyboard shortcuts with PreTranslateMessage, this all works with (euh) "keys that start with VK_" like the function keys, escape, delete, ... but not with normal letters. I'd like to redirect to a function when the dollar key is pressed...
  5. josphin

    $-respond in dialog based app

    hi, i'm writing a dialog based app. i use some keyboard shortcuts with PreTranslateMessage, this all works with (euh) "keys that start with VK_" like the function keys, escape, delete, ... but not with normal letters. I'd like to redirect to a function when the dollar key is pressed...
  6. josphin

    unselection state of a listbox

    hi all, i would like to check if any string in a listbox is selected (in an if statement) before i perform any operation to it, if no string is selected, i just want to put up an AfxMessageBox! thx in advance ! josphin.
  7. josphin

    Weird error messages!

    hi peepz, i'm working on a prog that needs urgent finishing. When i compile everthing seems to be just fine, but when i start the class wizzard (ctrl+w) i can read the following message: http://users.skynet.be/josphin/naamloos.jpg. can someone show me the light please ??? greets en props, jos.
  8. josphin

    HELP! I'm losing it !

    Hi, I declare the CArray variable array as follows in the KassaDlg.h file: class CKassaDlg : public CDialog { // Construction public: CKassaDlg(CWnd* pParent = NULL); // standard constructor CArray <CProducten, CProducten&> array; //declaration of array variable // Dialog Data...
  9. josphin

    Writing to files ...

    Another fairly easy problem for you experts out there, i guess. In the MSDN library stands an example for writing an array to files, now i want to write/read a CArray to/from a file. How, please ??? THX!
  10. josphin

    DUMB code problem in visual c++

    hi, i want to declare a CArray in my prog. The array is meant to contain elements of the type CProducten (a class that i made myself) Am i doing this correct : CArray <CProducten, CProducten> array[100]; ??? Thx!

Part and Inventory Search

Back
Top