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

Search:

Type: Posts; User: choconlangthang

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    10,034

    Re: GUI, component locked to grid

    Hey, tks for the reply, I'll give myself a treat on ur suggestions. For the time being, I'm quite satisfied with the plug-in "visual swing" http://code.google.com/p/visualswing4eclipse/ it does...
  2. Replies
    14
    Views
    3,225

    Re: Destroying JAVA Object

    I'm newbie too, however let's try this:
    you need something to store the number of members, and it must trigger an event when members goes down, I suggest an ArrayList with its notify()
    you need a...
  3. Replies
    2
    Views
    10,034

    GUI, component locked to grid

    Hey,
    I'm new to Swing GUI. I'm using Eclipse Ganymede to create simple GUI, just some buttons and text field on a JFrame. However, during the WYSIWYG, I cannot place the button freely, it must be...
  4. Re: Assign new value to an object in a function

    @Norm: thanks but returning is not what I want, since I might need to return multiple values.
    @keang & David: thanks for excellent article & code. So the trick is to wrap your object inside another...
  5. Re: Assign new value to an object in a function

    so, no error.
  6. Re: Assign new value to an object in a function

    Nope, there's no error, which cause a run-time bug for me.
    Currently my workaround is that I assign all values (primitive type, not object type), however it is not what it SHOULD be, and lengthy. ...
  7. Assign new value to an object in a function

    Hi,
    I want to pass an object to another function (of another class) to assign new value to it: code below


    public class MyClass
    {
    InfoSupplier infosupplier;


    public void...
  8. Replies
    1
    Views
    1,038

    Version control in eclipse

    Hi all,
    I want to control versions of my own code (just me the only developer). I use eclipse as my ide, I've seen something like subclipse, but it seems it's for a team, and need a host somewhere...
  9. Replies
    2
    Views
    3,027

    Re: Cygwin: uname

    Tks for reminding me.
    @admin: pls move to the correct category, tks.
    Actually, I'm trying to use nutch, it has a file to run its command, which I called "bash" (btw, what's the exact name ?)....
  10. Replies
    2
    Views
    3,027

    Cygwin: uname

    Hi everyone,
    I'm using cygwin on WinXp. I checked and found that uname.exe , dirname.exe are in cygwin directory already, but when I execute a bash file having uname, dirname it said : command not...
  11. how to get the speech out of 56K voice modem

    Hello everyone,
    I want to write a program getting the speech out of a voice modem, similar to Phone Recorder Plus...
  12. Replies
    0
    Views
    719

    Recording phone call API

    Hi all,
    I want to make phone call recording software, the phone is connected to a Voice message modem (an example of such soft is http://www.teley.com/products/phonerecorder/ ). I dig on Google and...
  13. Replies
    3
    Views
    830

    Re: Get text message into textbox web

    You can use hook.
  14. Re: problem with SetDlgItemText, SendDlgItemMessage

    Thanks, it works, cool !
  15. Re: problem with SetDlgItemText, SendDlgItemMessage

    I tried 2 ways:

    First:
    In my.h
    extern HINSTANCE g_hInstance;
    extern LPTSTR g_pszAppletCaption = TEXT("Let Me In");
    extern LPTSTR g_pszDesktopPassword = TEXT("doodle");
    ...
  16. Re: problem with SetDlgItemText, SendDlgItemMessage

    I got the solutions: use GetDlgItem, then SetWindowText and SendMessage.

    Howerver I got one more problem, plz help. Although I declare some variables with "extern" keyword, but the linker still...
  17. Re: problem with SetDlgItemText, SendDlgItemMessage

    to humptydumpty:well, the problem is the compiler doesn't understand SetDlgItemText, SendDlgItemMessage.

    to golanshahar: I tried it, too, but cannot solve that problem.

    any more suggestions,...
  18. problem with SetDlgItemText, SendDlgItemMessage

    Hello everyone,
    It's odd that I include windows.h already, but I still get 'undeclared identifier' when I use the two dialog functions. I'm programming on Embedded VC, but I guess it's not the...
  19. Replies
    1
    Views
    1,131

    MFC DLL, where is the entry point ?

    Hello everyone,
    If I create win32 dll, I get an entry point DllMain with :
    HANDLE hModule,
    DWORD dwReason,
    LPVOID lpvReserved

    If I create mfc dll, I just get a constructor of the app. Is it...
  20. Replies
    0
    Views
    908

    device registry, where is it ?

    Hello everyone,
    I'm following an article on create customized password protection interface.
    http://support.microsoft.com/default.aspx?scid=kb;%5BLN%5D;314989

    At step 4, it says, "Create a .cpl...
  21. Replies
    4
    Views
    1,968

    Re: cpl DLL, how to create ?

    What I want is a dll with the .cpl extension, not the name of the dll.
  22. Replies
    8
    Views
    1,288

    Re: how to consume a class in a DLL?

    to MrViggy:
    No, it doesn't link.
    The client project only link when I add the .lib file, say mydll.lib (corresponding to mydll.dll ) and the .h file of the class to the project. But I don't like...
  23. Replies
    4
    Views
    1,968

    cpl DLL, how to create ?

    Hello, I'm folllowing a sample on pocket pc of microsoft. The sample shows how to create a password protection program for pocket pc.

    http://support.microsoft.com/default.aspx?scid=kb;en-us;314989...
  24. Replies
    8
    Views
    1,288

    Re: how to consume a class in a DLL?

    to Krishnaa:No, I mean how to get a class out, instead of some function .
  25. Replies
    8
    Views
    1,288

    how to consume a class in a DLL?

    Hello, I make a dll, in which I exports a class.



    class __declspec(dllexport) CDllWin32 {
    public:
    CDllWin32(void);

    void Test();
    };
Results 1 to 25 of 126
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured