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

Search:

Type: Posts; User: alan93

Page 1 of 29 1 2 3 4

Search: Search took 0.36 seconds.

  1. Replies
    0
    Views
    1,296

    Java Project Hierarchy Tools?

    Are there any tools for java, specifically NetBeans 6.9.1 that will generate a hierarchy chart for a project with several source packages conatining several source files?

    I am looking through a...
  2. Re: 32bit to 64bit -> cannot open mfc90.lib = help

    Thanks, I saw that one already (been looking everywhere with every possible search string)

    There are two reasons for this:

    Its not (a), I only have the 4 dependencies files.
    (B)? I don't know...
  3. 32bit to 64bit -> cannot open mfc90.lib = help

    fatal error LNK1104: cannot open input file 'mfc90.lib'

    This is a project first built in VS6.0 then converted to VS2005.
    Now trying to get it to VS2008 and 64x.

    I have following dependencies:...
  4. Best way to start formview records program?

    I need to write an existing C++ app (Doc/View) to c# and trying to figure out best way to organize it.

    Records will ave many record fields.
    Will have maybe thousands of records to populate from a...
  5. Replies
    1
    Views
    705

    Re: Problem displaying Asian Characters

    Ok I figured something out.

    If I delete the English (U.S.) string table from the resources.
    It uses the correct , in this case China (PRC), string table with regional settings set to PRC.
    And...
  6. Replies
    1
    Views
    705

    Problem displaying Asian Characters

    I had this working once long time ago but now can't get it to do it again.

    2 problems

    1. Even though regional setting is set to Chinese (CH showing in language bar) and I can see chinese...
  7. Re: 64 bit compilation in Visual Studio 2008 Professional

    Will the "64-bit libraries option" work on a 32 bit system? Or does it need to be compiled ona a 64 bit system for that option to work?
  8. Re: Need to Concatenate and convert hex array values

    Ok that works thanks,

    knew it had to be something simple ha.
  9. Re: Need to Concatenate and convert hex array values

    please see attached file image if what I am saying is not clear.

    yellow highlight is file view in hex editor.

    bottom is VS memory view of the values stored in char array.
  10. Re: Need to Concatenate and convert hex array values

    for this I get

    3699507200
  11. Re: Need to Concatenate and convert hex array values

    for this i get a value of

    4294967260
  12. Re: Need to Concatenate and convert hex array values

    For this I got a value of 0FFFFFF82FFFFFFDC

    and for this



    unsigned long val = (unsigned long)(unsigned char)buff[0] +
    ((unsigned long)(unsigned char)buff[1] *...
  13. Need to Concatenate and convert hex array values

    Got this

    chbufferline[100];

    and in it i have 3 hex values in the middle, say at 48, 49, an 50 which are the hex values indicated

    chbufferline[48] //is DC
    chbufferline[49] //is 82...
  14. Replies
    2
    Views
    1,092

    Re: Problems with Command Line Args in MFC App

    Yea I did that.
    In debug both args 0 , and 1 appear full strings but when assigned into CString vars is where the trouble begins.

    I may have to post the project to show what I mean.
  15. Replies
    2
    Views
    1,092

    Problems with Command Line Args in MFC App

    I read a few of the posts on this after doing a search but didn't see my situation in them.

    My situation is wanting to receive 2 strings.
    1. a path with c:\Program Files\.....
    2. a DLL to...
  16. Replies
    2
    Views
    3,863

    Re: Regasm.exe Problems with COM dll

    These two links helped me solve it

    http://www.experts-exchange.com/Programming/Languages/CPP/Q_22543222.html

    http://www.vbforums.com/showthread.php?t=467225
  17. Replies
    2
    Views
    3,863

    Regasm.exe Problems with COM dll

    MSDN gives you all kind of help about creating COM dlls but not very much help on how to get the thing to work on other computers.

    Yea you can run Regasm.exe on sample.dll and Voila! It's...
  18. Replies
    1
    Views
    753

    Unable to call Function in VB DLL

    I have this in VB DLL.



    Public Class cPB
    Public Sub LaunchPB()
    Call StartPB()
    End Sub
    End Class
  19. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    I realize that.
  20. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    O well stupid me I figured it out. I had removed this from the project when updating code from a previous version :


    AfxEnableControlContainer();



    // Standard initialization
    #ifdef...
  21. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    aaaah i see you are the master of generalized info.

    Three reasons programmers don't post their code:

    1. Too big
    2. Don't want to post company's business of trade on web
    3. already did.
  22. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    No, I didn't do that in the other app that works though either
  23. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    well I tried this in the InitInstace


    ProgressDlg = new CProgressDlg(AfxGetApp()->m_pMainWnd );
    ProgressDlg->Create(IDD_PROGRESSNEW);

    and still 0x00000000 for CProgressDlg hWind, this is...
  24. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    Its not failing itn InitInstace() it works there in my other program.
    In this one it fails in main dialog of the dialog app.
  25. Replies
    22
    Views
    3,223

    Re: Question about hWnd

    I meant the ::OnInitDialog()

    sorry
Results 1 to 25 of 714
Page 1 of 29 1 2 3 4





Click Here to Expand Forum to Full Width

Featured