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!

Recent content by bitmapbrother

  1. bitmapbrother

    OnClose

    Finally I got it working, I forget WS_CAPTION style. I am developping app for Pocket PC and CWnds are fullscreen here with caption in global system bar which has [x] icon too - but that [x] icon doesnt work like [x] icon in CWnd caption bar (it closes windows but it doesnt call mapped OnClose)...
  2. bitmapbrother

    I am so lost.

    Try that: System.Diagnostics.Process.Start("Shutdown", "/s")
  3. bitmapbrother

    OnClose

    Thx for tip. I added that code but it still doesnt work.
  4. bitmapbrother

    OnClose

    Hi, I derived class from CWnd. I need to catch OnClose event but it doesnt work. Thx for any tips. class MyWin : public CWnd { protected: afx_msg void OnClose(void); public: MyWin(); ~MyWin(void); bool Init(void); // creates window by CWnd::CreateEx with parent = NULL void Show(void); //...
  5. bitmapbrother

    md5 check

    I found that WinRAR has this option: "Put recovery record" - "Adds the recovery record, which may help to restore an archive in case of damage. You may specify a size of the recovery record in the Advanced options of this dialog. The default value is about a percent of the total archive size."...
  6. bitmapbrother

    md5 check

    He send me md5 for each archive part created by WinRAR and md5 for uncompressed ISO file too. Two archive parts have wrong md5 but WinRAR is able to extract ISO out and that ISO has correct md5.
  7. bitmapbrother

    md5 check

    Hi, I transferred 8 GB ISO from my friend using ftp. He divided it to 34 parts (split size 200 000 000 bytes) using WinRAR. He also created md5 for each file. I extracted it without problems so I didnt checked md5 and he deleted archives. Later I noticed that two parts of archive have different...
  8. bitmapbrother

    How to get list of available dbExpress drivers?

    Is there any platform independent function for this or I have to examine dbxdrivers.ini?
  9. bitmapbrother

    ListView: Adding and Removing Columns on the Fly

    This works for me: TListItem *list_item=ListView->Items->Add(); list_item->Caption="name"; list_item->SubItems->Text=property->GetItem(field_index+1); list_item->Update();
  10. bitmapbrother

    simple designer - how to ?

    I am creating runtime designer which will be used by enduser - he creates forms with controls and finally save this as a project in custom format. So I need to show controls on the form and enable him to move and resize them. And here I have problem ... dont know how to draw to all controls and...
  11. bitmapbrother

    Newbie Newline question

    Use "\r\n" if u need new line - works for me.
  12. bitmapbrother

    simple designer - how to ?

    Hi, I need to create simple designer so user can add controls to form and them move them, change size etc. My problem is that not all controls have Canvas so I cant draw "marks" for resizing. Next problem is that I need to select control by mouse click but not all controls have OnClick() event...

Part and Inventory Search

Back
Top