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

Search:

Type: Posts; User: alex_gusev

Page 1 of 31 1 2 3 4

Search: Search took 0.11 seconds.

  1. Re: Upload a file on the Internet through a form

    Hi Mike,

    script (e.g. ASP script) may get uploaded file easily via HTTP Request stuff as one of Form data items. you might use HTTP PUT if you don't need anything at server side to interact with
  2. Replies
    0
    Views
    632

    DataGrid column size

    Hi,

    this is probably trivial question, but I have failed to get it working properly.

    What I need is to fill DataGrid control by data from some XML file on Windows Mobile 5.0 and C#. So I do...
  3. Replies
    0
    Views
    1,070

    DataGrid column resizing

    Hi all,

    does anyone know how to programmatically set the width of DataGrid control in C# under WM 5.0 ? I guess I have tried all obvious ways like assigning it in On_Load() method, but it seems...
  4. Replies
    12
    Views
    3,498

    Re: Debug Assertion Failed ! Urgent !

    that code works on my machine too, so you have to debug it on that machine (even remotely, e.g. with WinDbg)
  5. Replies
    12
    Views
    3,498

    Re: Debug Assertion Failed ! Urgent !

    FindNextFile can be called only after first FindFile was successful. besides, you use there hardcoded path, which may be wrong on different machine
  6. Replies
    12
    Views
    3,498

    Re: Debug Assertion Failed ! Urgent !

    i think that if you see at stack trace, you'll get to the point, but besides a comment in CFileFind::AssertValid() (where line #354 is) tells you that the code called Get() without any FindNext()
  7. Replies
    3
    Views
    2,041

    Re: IWebBrowser2 - Silent download

    well, you might use WinInet instead or even WinSock to get the same HTML data
  8. Replies
    3
    Views
    2,041

    Re: IWebBrowser2 - Silent download

    What is the problem?
  9. Replies
    10
    Views
    1,017

    Re: templated function

    you need to re-factor your function slightly to handle former "u_char byte" as "u_char* byte", because iterators are just pointers to e.g. vector items. once you do it, it won't matter what do you...
  10. Re: Database calls hang randomly in CRecordset calls.

    in this case I suppose WinDbg would show you some clues in ODBC stuff getting you problematic function names :)
  11. Re: Getting my local ip-address when sitting behind router..

    All messengers like Skype do it this way
  12. Replies
    44
    Views
    3,549

    Re: Oldest - Most Experienced....

    Real World Age: 35
    Total years of programming experience: 20 [1987]
    Years Professional Development: 11 [1996]
    First Language(s): REXX, PL/1, Pascal
    First Computer: (Purchased) just laptops :)
  13. Replies
    7
    Views
    1,349

    Re: Starting / Stopping another application

    another possible way to consider is to call RegisterWindowMessage(), then send it at exit as broadcast and have customer's application to handle it
  14. Replies
    4
    Views
    880

    Re: server question

    nice research was done here
  15. Thread: Clipboard

    by alex_gusev
    Replies
    3
    Views
    939

    Re: Clipboard

    afaik there is no specific MFC class or function, but you can read here for details and sample for Clipboard stuff or have a look at dumpstak.cpp under MFC/SRC folder
  16. Thread: Using fopen

    by alex_gusev
    Replies
    4
    Views
    1,242

    Re: Using fopen

    pass it at the place of "filename", i.e.



    fopen("<full path here>",<attributes>);
  17. Replies
    7
    Views
    1,349

    Re: Starting / Stopping another application

    simple solution might be using EnumWindows() to enumerate windows after process creation and then GetWindowProcessThreadId() to detect matching one. This gives you hWnd related to given process and...
  18. Re: Problem with Terminal services on WinXP and 802.1X

    have a look at www.logmein.com
  19. Re: ListCtrl - display data in a grouped manner.

    well, if you don't need sorting by employee name, why not to use map container. I assume that fist+last name is a key.

    I personally think that the best way is to create stored procedure which...
  20. Re: Database calls hang randomly in CRecordset calls.

    that's fine, so download WinDbg and ODBC.PDB etc. files from MS site. as a result you'll see OBDC and NTDLL function names, it'll be for starters to have a look at. ADPlus allows you having dumps to...
  21. Re: ListCtrl - display data in a grouped manner.

    I believe that simple SQL query returns you the data already ordered and grouped, doesn't it? I guess that you even may get it as XML (but I'm not sure it is supported with Access), so whatever keeps...
  22. Replies
    7
    Views
    1,785

    Re: Odd Behaviour!!

    well, it i always better to wipe out all service files when creating or duplicating new projects unless you really need them.

    re. NCB, this file keeps symbols for the project, so it is...
  23. Re: Exporting Classes in a DLL to be used from Visual Basic

    exporting classes from DLL IS possible, but it is much more painful than for functions because of all those decorated names etc., at least for non-.NET stuff.

    Have you considered COM way? you can...
  24. Re: ListCtrl - display data in a grouped manner.

    why listctrl is preferable? anyway I guess it is possible to adopt the approach, i.e. custom drawing.

    and for the simplest solution your proposed solution will work, i.e. making all the grouping...
  25. Re: ListCtrl - display data in a grouped manner.

    maybe this sample will be useful

    and that one looks even better
Results 1 to 25 of 754
Page 1 of 31 1 2 3 4





Click Here to Expand Forum to Full Width

Featured