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

Search:

Type: Posts; User: James Goh

Search: Search took 0.03 seconds.

  1. How can I read address of Input/Output range of the Resource of a specific device ?

    hi All,

    Can anyone tell me how can i access the device of the resource in Win2000, inorder for me to know the input/output range of the device in the system? e.g, i have a Input/Output card that...
  2. Thanks for replies. The code was written in...

    Thanks for replies.

    The code was written in Turbo C , a 16 bit compiler that runs only for Win9x enviroment. I have converted the 16 bit into 32 bit using Borland C compiler targeted for win2000...
  3. How can I made my application run faster without changing of hardware e.g memory, cpu

    Hi all,

    Can any one advise if i would want my application written in C/C++ to run faster without changing of hardware components ? I have tried set the Processpriorty of the C++ code to...
  4. No, is not school project. It is inductrial...

    No, is not school project. It is inductrial project.

    I try both method, but it cannt compile and give error --
    cannot convert 'char (*)[2000]' to 'char **'

    part of the project as shown...
  5. Replies
    2
    Views
    740

    You can dynamically explicit load the dll in run...

    You can dynamically explicit load the dll in run time and no lib is needed.
    e.g


    typedef void (*PExportedFn)(int&, char*);

    HMODULE hMod = LoadLibrary("Lib1.dll");
    PExportedFn pfnEF =...
  6. hi Sef I think you have mistaken that i ...

    hi Sef
    I think you have mistaken that i disagree with your solution, no i am not. While i posted my problem in the forum this morning , i was also trying to resolve the array - pointer problem as...
  7. :( Let me give a brief discription of the...

    :(
    Let me give a brief discription of the background of my problem.

    The original software was written in 16 bit Turbo C in early 90s, and my task is to convert it from 16 to 32 bit application...
  8. Hi Kevin, Thanks a million. What u mentioned...

    Hi Kevin,

    Thanks a million.
    What u mentioned is correct, I get weird character if i do as what u mentioned at ur second post. :p

    The method u used for 2 dimension array is cool, i will...
  9. Re: Re: How to reference **ptr_xx to ptr_yy [xx][xx]

    Thanks Sef.

    I managed to solve the prob with another approach this afternoon by using casting.

    eg.
    char xx[100][500];
    char **yy;

    yy = (char **) xx;
    yy[0] = "You are a nice guy";
  10. How to reference **ptr_xx to ptr_yy [xx][xx]

    Hi All,

    Good Morning to everyone here. :P

    May i know anyone here can help to answer one of my question. I would like to know how to reference double dimension array with double dimension...
  11. Replies
    10
    Views
    1,158

    Thanks alot for reading through and spending...

    Thanks alot for reading through and spending times answering to my doubts. I really appreciate ur expanation and will try out the mentioned method . Have a Good Day!

    BestRegards,
    James Goh
  12. Replies
    10
    Views
    1,158

    Hi All I facing some difficulties with my...

    Hi All

    I facing some difficulties with my application regarding implicitly and explicitly loading dynamic lib, hope you guys can help...

    1. How can i implicitly link the xxxx.lib written in...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured