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

Search:

Type: Posts; User: john wiley

Page 1 of 2 1 2

Search: Search took 0.02 seconds; generated 7 minute(s) ago.

  1. Replies
    16
    Views
    8,153

    Re: File Binary I\O

    #include "windows.h"

    WinMain(){
    DWORD dwi;
    DWORD offset;
    char chr;
    FILE* Output = fopen("2.txt","wb+");
    FILE* Input = fopen("1.txt","rb+");

    DWORD FileLength=GetFileSize(Intput, 0);
  2. Thread: ProgressBar

    by john wiley
    Replies
    6
    Views
    5,233

    Re: ProgressBar

    Hello codeguru.com,

    I want to remind you have to *link* "comctl32.lib", so you can use the functions regarding progress bars.
    Also don't forget to *include* the commoncontrols in your app by...
  3. Thread: script vrml

    by john wiley
    Replies
    2
    Views
    885

    Re: script vrml

    thank you. topic closed
  4. Thread: script vrml

    by john wiley
    Replies
    2
    Views
    885

    Re: script vrml

    http://f1.grp.yahoofs.com/v1/MNvRT64DZV54MwPWYgt5vgyUNZoOhEzcTvI-v27GfWn1EEMmt-N-uI-lZL6c1roRaoJ678FB6IiS-mYO_WMiDw/wrl/contunit.WRL

    to view :download it in a folder
    create maps folder and
    put...
  5. Thread: script vrml

    by john wiley
    Replies
    2
    Views
    885

    script vrml

    There was a time 3dmodelling was cool. Have a look at turmansky-1.wrl. I
    put together a file to improve TouchSensor controls in my sketch by `st july.

    can you do a modificatton to allow...
  6. Replies
    1
    Views
    1,057

    Re: Transfer Video from DVD to PCIe

    first buy a movie dvd; preferably one without decss reqs.

    dvd contents is encrypted on disc so you may not be able to do a simple copy-paste w it. if you can do it, you have one thats already...
  7. Replies
    0
    Views
    689

    View Post

    If an universal identifier expresses as {23A77BF7-ED96-40EC-AF06-9B1F4867732A}
    and a localpath as a reg_sz string: "%%ALLUSERSPROFILE%%\Rundll32 IedkCS32.dll,BrandCleanInstallStubs";
    please tell...
  8. Re: Tree View: alphabetical sort after label editing

    Thankyou for explaining, when it comes to windows I know only dialogs, buttons. Trees I haven’t tried.
  9. Thread: Restart API

    by john wiley
    Replies
    6
    Views
    2,148

    Re: Restart API

    doesnt api restart only if supposed?
  10. Re: Tree View: alphabetical sort after label editing

    hope to not reply when i dont know
  11. Replies
    3
    Views
    10,226

    Re: C++ Programming - Eject USB Device

    for USB devices you may add a autorun inf file in root folder, and drop a line that says
    [AutoRun] ;section
    open=app ;yourprogram
    eof
    Then it shall start app
    ...
  12. Thread: Restart API

    by john wiley
    Replies
    6
    Views
    2,148

    Re: Restart API

    doesn`t api restart only if supposed to?
  13. Replies
    2
    Views
    3,857

    Re: including DDK headers

    well done
  14. Thread: api

    by john wiley
    Replies
    0
    Views
    963

    api

    Please register my request

    One of my programs gets nasty and srambles my folders. I need a way for filtering chars in the i/o and change names; i.e. replace app`s call to new call such as:
    ...
  15. Replies
    14
    Views
    16,244

    Re: Secure Memset

    so a macro such as next isnt working ?

    #define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } };//

    which is better using: this procedure, or
    assigning a new proc to switch buffers to a...
  16. Thread: dword

    by john wiley
    Replies
    2
    Views
    607

    dword

    hi,
    there have been few exercises by myself to enter cpp because of limitation of books i stumbled upon

    please answer me a question on the following exercise from msdn

    main(){
    dword...
  17. Replies
    3
    Views
    770

    Re: Is this class set up correctly

    what does it mean ?
    <style color=1>const HFRM &ObjectIn1<\style>

    wouldn`t be more size efficient to use a pointer for a std type instead ? have u defined HFRM ?
    personally and for myself only...
  18. Replies
    12
    Views
    2,264

    Re: classes in visualstudio

    I did a small image:



    http://www.freeimagehosting.net/t/93f19.jpg



    If you have the time read again and interpret it, pleass? Its a five files graph
  19. Re: Unable to input (cin) when using strings

    I run it and entered only one name. Why is that app of yours required and additional cr/lf line ?
    ======
  20. Replies
    3
    Views
    1,425

    Re: Case Statement

    The syntax for crystal was pretty complicate. Sounded like visual syntax but had only stream output only. You didn`t have switch or case statements back then

    Data values were the only ifs you had...
  21. Replies
    16
    Views
    8,153

    Re: File Binary I\O

    first think I would think of is to use writeprofile functions to be kind of organizd programmer. I`m not shure why you use random storage and not use sections w plain text.

    what is the function...
  22. Replies
    12
    Views
    2,264

    Re: classes in visualstudio

    I do not use special symbols in classes definitions &only declared it as typedef "}CREP;" .

    SPlitting functions in classes by scopes (one to report error in crep classe;another to display...
  23. Replies
    12
    Views
    2,264

    Re: classes in visualstudio

    many thanx , now let`s move on. I got following error.............................
    --------------------Configuration: main_win32 - Win32 Release--------------------


    *Output Window...
  24. Replies
    12
    Views
    2,264

    Re: classes in visualstudio

    were you the only soul th2kindly checked and run it too ? It needs further work by me to improve
    Great now it works *)th$

    . __--------_
    . / >|< \|/, \
    .| / \ |
    .\ ...
  25. Replies
    13
    Views
    10,004

    Re: Leak detectors

    there is no such thing as "leak detector" in software. you may follow article1 on data recovery&computing@wikipedia, companies publish certificates for proof and privacy acknowledgements
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured