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

Search:

Type: Posts; User: reachb4

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Accessing view from a controller class [C#]

    Is it possible to access the view(Form in my case) from the controller class without any scripting in the view's codebehind file?
    I see MVC projects handling the event[eg:-button click,etc] inside...
  2. Replies
    2
    Views
    3,373

    Re: A MVP pattern doubt

    Thanks for the reply. It took some time for me to come back to this thread. Your answer and supporting links were helpful.
  3. Re: Is MVC and MVP supervising controller the same?

    Zillion thanks for taking time and pain to write a detailed answer. Your answer is very clear and informative. Bookmarking this :)

    After reading your answer i believe a project/example done true...
  4. Is MVC and MVP supervising controller the same?

    Hi,

    I have read the following description for the MVC in a website:

    In this case of MVC the Controller simply builds the Model and passes it off to the View for rendering. No stateful interplay...
  5. Replies
    2
    Views
    3,373

    A MVP pattern doubt

    Hi,

    I happend to read a MVP documentation in which they explained the concept of Interactors in the Presenter. When i saw examples of MVP in codeproject or in other sites, no one used these...
  6. Replies
    1
    Views
    2,449

    interactor/slection/commands in mvp

    Hi,

    I happend to read a MVP documentation in which they explained the concept of Interactors in the Presenter. When i saw examples of MVP in codeproject or in other sites, no one used these...
  7. Replies
    2
    Views
    159,850

    C# LDAP SSL connection fails

    I am using the following code to connect to aLDAP server using SSL. The following code will work only if i turn off the SSL flag. Can any one please tell me what am i missing here to do a SSL...
  8. Socket Connection inside a COM component fails while connecting via delegates Options

    I have a WPF/C# program which utilises a COM component for making a
    network connection. The problem is I the socket connection is failing
    when i tried calling the ConnectServer function from a...
  9. Re: How to update progress bar from CopyFileEx function

    Perfect.. Thank you. Reps added
  10. How to update progress bar from CopyFileEx function

    Hi,
    i am using CopyFileEx function to copy a large file. I need to display progress bar to give update to the user.

    I have written the following callback function:



    DWORD CALLBACK ...
  11. Replies
    1
    Views
    1,894

    custom progress window with SHFileOperation

    Hi,

    Is it possible to show custom progress window with SHFileOperation ?

    Regards,
    Joe
  12. Replies
    4
    Views
    16,506

    Re: Getting filesize using GetFileSizeEx

    Thank you all i find the resolution from the link.

    http://blog.kowalczyk.info/article/Get-file-size-under-windows.html


    long GetFileSize(const TCHAR *fileName)
    {
    BOOL ...
  13. Replies
    4
    Views
    16,506

    Getting filesize using GetFileSizeEx

    Hi,
    I am trying to get the file size using GetFileSizeEx function . howver i am getting exception at that point. Please tell me what i am doing wrong.

    Also please tell me how to convert the...
  14. how to increase the height of the list part of a combo box

    Hi,
    How can I increase the height of the list part of a owner drawn combo box?


    Please advice,

    Regards,
    Joe.
  15. Re: the best way to show a combo box inside list control

    Thank you very much,
  16. the best way to show a combo box inside list control

    Hi,
    I am creating a list control in report view. I need to show a combo box inside the report view in one of the columns. Please let me know what is the best way to acheive this.

    Please advice.
    ...
  17. HOWTO: move to columns using tab key in list control.

    Hi,
    Can any one help me by telling how to move to different columns inside a list control using tab key press.

    Regards,
    Joe.
  18. Replies
    0
    Views
    776

    showing a dialog at keypress

    I am trying to show a dialog at key press like intellisense. i have written the following code inside the keyboard hook function.



    if(wParam== WM_KEYDOWN)
    {
    KBDLLHOOKSTRUCT* kbd...
  19. Replies
    8
    Views
    2,789

    Re: Invoking a dialog from MFC dll.

    Sure.. Thank you for your help so far.
  20. Replies
    8
    Views
    2,789

    Re: Invoking a dialog from MFC dll.

    Nope, lpszcurrentname is the name of the Dialog application i created. Why is it so??


    Thanks and Regards,
    John.
  21. Replies
    8
    Views
    2,789

    Re: Invoking a dialog from MFC dll.

    Sorry,

    Yes it is in a MFC Regular Dll(MFC Shared).


    Thanks,
    Joe.
  22. Replies
    8
    Views
    2,789

    Re: Invoking a dialog from MFC dll.

    Thank you so much for your help.

    I first tried normal win32 dll and secondly the MFC Dll. Neither proved a success.
  23. Replies
    8
    Views
    2,789

    Invoking a dialog from MFC dll.

    I have coded a function like below hoping that it will show a dialog on a key press. but for some reasons it is not showing up. This code is written inside a MFC Dll. Can you help me in pointing out...
  24. Replies
    0
    Views
    601

    Attaching a dialog to a process.

    Hi Folks,

    I am planning to show a dialog (which will act as a drop down list) on any text editor where the user presses a key combination. I would like to know how I can make the dialog work as...
  25. Replies
    2
    Views
    832

    Re: creating an intellisense type list

    I am need to show couple of english words taken from the database. when the user presses CTRL+SPACE in any text area a dropdown list will appear with the words from which user can select a word.
Results 1 to 25 of 144
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured