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

Search:

Type: Posts; User: VbEndUser

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Re: Wondering how can we know the content of a dialogbox

    Dear Igor Vartanov and 2Kaud,

    Thanks for correcting my mistake.
    I didnot used the EnumChildWindows before and didnot go through in details about it.
    I will learn the subject in more details.
    ...
  2. Re: Wondering how can we know the content of a dialogbox

    Dear Igor Vartanov,

    I think the EnumChildWindows is not suit for this case.

    What i try to do is to get the content of a dialogbox.
    For example:
    i have a dialogbox which have 3 button and 1...
  3. Wondering how can we know the content of a dialogbox

    Dear Gurus,

    I was wondering how can we know how many items exist in a dialogbox?
    If there any way that i can get the items ID in a dialogbox by having just the dialogbox's object or handler?
    ...
  4. Replies
    6
    Views
    2,673

    Re: Passing variant variable through LPVOID

    Dear 2Kaud,

    I'm using Microsoft Visual Studio 2008 compiler.
    Of cause you can not copy direct the coding from my post cause there are syntax error.
    But the casting part is correct.

    Thanks.
  5. Replies
    6
    Views
    2,673

    Re: Passing variant variable through LPVOID

    Dear 2Kaud,

    I have solved my problem.


    void main()
    {
    CClassA a;

    BOOL bAssign=FALSE;
  6. Replies
    6
    Views
    2,673

    Re: Passing variant variable through LPVOID

    Dear 2kaud,

    Yes. I understand.
    Regarding the coding, it was an example of what i trying to do.
    Sorry that there are syntax errors...

    About the answer that you suggest, it was an alternative...
  7. Replies
    6
    Views
    2,673

    Passing variant variable through LPVOID

    Dear Gurus,

    I have create a function which able to return value for variant of variable through a LPVOID parameter function.
    But some how it cannot work.
    Maybe i have did wrong in some point....
  8. Replies
    3
    Views
    1,879

    Re: _TrackMouseEvent not working

    Dear D_Drmmr,

    Thanks for pointing out my thread's problem.
    I always want to post my code in the
    window just that i did not know the script.
    There was no shortcut key or button.

    Refer...
  9. Replies
    3
    Views
    1,879

    _TrackMouseEvent not working

    Dear Gurus,

    I'm facing a problem with the _TrackMouseEvent
    Below is my coding:



    void CMyDlg::OnMouseMove(UINT nFlags, CPoint point)
    {
  10. Replies
    7
    Views
    2,971

    Re: Append Data to CFile via FILE*

    Dear All,

    I have tested the strerror(errno) message. It seem to store the previous error message which confuse me.
    I thought the error message was for my _fdopen() function. Is actually not.
    ...
  11. Replies
    6
    Views
    2,436

    Re: DLL errors in vc++ program

    Did you specific the "Additional Library Directory" where you lib is?
    When you have set your "Additional Dependencies" at the project properties->input.
  12. Replies
    7
    Views
    2,971

    Re: Append Data to CFile via FILE*

    Dear GCDEF,

    I need to do that cause a third party library's save function needed the FILE* handle.
    This is why i needed to call this function:
    pFILE = _wfdopen(fd, _T("a+"));


    Dear VictorN,...
  13. Replies
    7
    Views
    2,971

    Append Data to CFile via FILE*

    Dear All,

    I having a problem here.
    I'm trying to append data to a CFile using FILE*
    But when execute the application, it always give error saying "No such file or directory".
    I can actually see...
  14. Re: WaitForMultipleObjects (counter less than number of phandler)

    Dear Skizmo,

    Thanks. I have go though the MSDN help page.
    It seem like if i want to change the nCount, i have to reset my plHandles array as well.
    This is because my lphandles need to be...
  15. WaitForMultipleObjects (counter less than number of phandler)

    Dear All,

    I have a question here.
    I'm using WaitForMultipleObjects function.
    I have 4 lpHandles.
    my software are running fine now.

    If let said i change the nCount to 2 but i still pass in 4...
  16. Replies
    11
    Views
    3,178

    Re: sqlite static complie

    Dear VictorN,

    I copy both the file sqlite3.def and sqlite.dll to the LIB.exe folder
    (C:\Program Files\Microsoft Visual Studio\VC98\Bin).
    I did not copy to the c:/ path

    Thanks.
  17. Replies
    11
    Views
    3,178

    Re: sqlite static complie

    Dear laserlight,

    yes. I have disable the pre-compiled headers and the compilation is successful.
    i just not understand the usage of the pre-compiled headers.

    another question here is how can i...
  18. Replies
    11
    Views
    3,178

    Re: sqlite static complie

    Dear laserlight,

    I was trying to use sqlite library as well.
    I follow you instruction by adding in the 2 file sqlite3.h and sqlite3.c to my project.
    But i get this compilation error:

    [QUOTE]...
  19. Replies
    2
    Views
    1,732

    Problem with WaitForMultipleObjects

    Dear all GURUs,

    I'm facing a problem with my WaitForMultipleObjects function.
    I'm writing a thread to wait for 3 result using event.
    When getting all the result, then only i proceed to next...
  20. Re: how to refer to 2 dimensional array address

    Dear D_Drmmr,

    Thanks. it work just like what i want.
    Forget how to input the quote into the code.
    Thanks again.
  21. how to refer to 2 dimensional array address

    i have a problem here. I want to retrieve a data using memcpy.

    code
    ////////////////////////////////////////////////////////////////////////////
    unsigned char m_Data[256];
    //m_Data = "Hello...
  22. Replies
    17
    Views
    2,272

    Re: How to embed dialog onto another dialog

    Dear DataMiser,

    the calculation work. Thanks.
    but there another problem. when i drag the from1 dialog, the form2 dialog will not move together.
  23. Replies
    17
    Views
    2,272

    Re: How to embed dialog onto another dialog

    yes. i know about it that is why i try to embed the dialog at the Form1.
    I know in VC++, we can do like this but i don't know how to do in VB.
    Thanks
  24. Replies
    17
    Views
    2,272

    Re: How to embed dialog onto another dialog

    Dear DataMiser,

    I have try the calculation but the form2 position is follow the monitor screen coordinate.
    Is not following the Form1 coordinate.

    Thanks
  25. Replies
    17
    Views
    2,272

    Re: How to embed dialog onto another dialog

    Dear DataMiser,

    I developing a dialog base application.
    one Main dialog and few child dialog.
    I'm not creating a MDI application.



    Private Sub Form_Load()
    frmInfo.Show vbModaless, Me
Results 1 to 25 of 61
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured