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

Search:

Type: Posts; User: TOMNKZ

Page 1 of 7 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    686

    Split huge file during writing.

    Hi.

    I have freemarker template, which produce huge file.


    template.procced(bean, writer);

    I have to provider a writer for this function, which split result on several files.

    So,...
  2. Replies
    1
    Views
    7,093

    Re: download file and refresh page

    Solved it this way:

    1.user press button
    2.On server program check current status and if it has to be changed, programme change it,set a flag and send responce.
    3.In jsp if flag is set,...
  3. Replies
    1
    Views
    7,093

    [RESOLVED] download file and refresh page

    Hi,
    Can anybody help me to solve following problem:
    I have jsp page with the button and status.
    1. User presses the button
    2. System outputs file for user.
    3. User saves file.
    4. System...
  4. Replies
    1
    Views
    2,923

    InternetOpenUrl in multithread app

    Hi.

    I have two threads in my application. In worker thread i download some html page using InternetOpenUrl,for that use CAmHttpSocket(http://www.codeproject.com/internet/amhttputils.asp).

    In...
  5. Replies
    0
    Views
    742

    Convert UTF-8 to Unicode problem

    Hi,
    i have utf-8 files in utf-8 with arabic characters. I want to convert it to Unicode.
    My code:


    char* data = //arabic text in UTF-8
    CString value;
    int req =...
  6. Replies
    6
    Views
    873

    Re: Unicode and html pages

    I think,you don't understand what I ask.

    If i watch this page in IE,then it's look pretty good,and all arabic words are well displayed.

    But when i try to read this page in my program I get bad...
  7. Replies
    6
    Views
    873

    Re: Unicode and html pages

    In VS 6.0 it's the window where you can see values of variables.;)
  8. Replies
    6
    Views
    873

    Re: Unicode and html pages

    There are no charset in <head>. But IE determinate page as UTF_8, and if I save page on disk,IE save it in UTF_8.
  9. Replies
    6
    Views
    873

    Unicode and html pages

    Hello.

    I have to read and parse web page which is in UTF-8(or i think that it is). Page contains some arabic texts.

    I use this class http://www.codeproject.com/internet/amhttputils.asp to...
  10. Replies
    3
    Views
    774

    Re: Crash without "don't send"- why?

    Yes,in debug- it's first chance exception- access violation.

    thanks,all
  11. Replies
    3
    Views
    774

    Crash without "don't send"- why?

    Hi.
    What can cause application crash with out "don't send" dialog?
  12. Replies
    2
    Views
    789

    Re: A Very Simple BHO

    What is it BHO?

    About how to write add-in to IE,look here:
    http://www.codeproject.com/shell/2find.asp
  13. Replies
    8
    Views
    18,301

    Re: Still image capture from a web cam

    Look here:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/directshow/htm/amcapsample.asp
    ...
  14. Replies
    0
    Views
    481

    problem with WMP:strange icon

    Hi.
    I use Windows Media Player ActiveX in my application. All works fine. But there is one little problem. When i run application and don't start play file, i see some icon(see attachment). I want...
  15. Replies
    0
    Views
    719

    mscomctl.ocx:StatusBar,ATL

    Hi.
    I have a problem with mscomctl.ocx:StatusBar.
    I add it into my ATL project to my dialog from. Then i make several panels and add pictures,text to it. Set it enabled. But when i run my...
  16. Replies
    1
    Views
    719

    Access Plugin: Events.

    Hi.
    I have VC++ plugin for MS Access,i want to catch event,when user open database. How can i do this,which event i should catch?

    Do you know any docs about Access programming under VC?
  17. Replies
    3
    Views
    909

    Re: Create CWnd problem

    I find solution for my problem.

    I create window in dll,so it lead to problems. Solution was to create not modal dialog, which parent can be NULL.

    Thank you for interest.
    :wave:
  18. Replies
    3
    Views
    909

    Create CWnd problem

    hi.
    i create cwnd derived class.


    Create(NULL,_T("Errors"),WS_CHILD|WS_CAPTION|WS_MAXIMIZE|WS_MINIMIZE|WS_OVERLAPPED,CRect(100,100,500,500),&CWnd(GetDesktopWindow()),0);


    In OnCreate of...
  19. Replies
    0
    Views
    741

    Scroll problem:child window

    Hi
    I have and dialog and child window in it.
    In this child window i have button as a child window.

    When user scrool in dialog. I get a message and try to scroll child window by ScrollWindow....
  20. Replies
    6
    Views
    2,057

    Re: Calculate scroll shift in pixels.

    It seems problem was solved.

    I calculate number of pixels on which i have to scroll.
    I take all window size(not only visible,but all) and all scrollbar range. And devide them. So i get number...
  21. Replies
    6
    Views
    2,057

    Re: Calculate scroll shift in pixels.

    i have already read this articles. But us i understand each time programmer definr shift in pixels. In text shift relatively to text width,in bitmap to simply in pixels.


    And my question was...
  22. Replies
    6
    Views
    2,057

    Calculate scroll shift in pixels.

    Hi
    I have a listctrl with scrollbar. When user scroll i get message WM_HSCROLL. Now i want to know on how many pixels image is shifted. How can i calculate it?
    I need it to scroll another window...
  23. Replies
    4
    Views
    794

    how to move mouse to the point

    Hi.
    In my mfc dialog application i want to move mouse to the point,but i can't find any function for it,is it possible?
  24. Replies
    2
    Views
    1,333

    Re: customize CListCtrl:CHeaderCtrl

    because i want that one column header contains many list columns,like this:

    |Header column asdasda|Header column1 asdasd|
    |List column|List column|List column|List column|
  25. Replies
    2
    Views
    1,333

    customize CListCtrl:CHeaderCtrl

    Hi.
    How make can i make resize of header without resizing columns,is it possible?

    i.e. I want that column header become independ(in resizing) from list control.
Results 1 to 25 of 170
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured