Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. DeCoDeR

    difference between two evals

    but when i remove the brackets; sometimes it does not work, it throw an error ; something like " this table does not have this column" Read between the lines
  2. DeCoDeR

    difference between two evals

    what is the difference between Eval("column_name") and Eval("[column_name")? Read between the lines
  3. DeCoDeR

    accessing master page events from content page

    there is button on master page and onclick event will do different thing depending on which content page it is called from. so is there any way to hook up to master page events from content pages ? Read between the lines
  4. DeCoDeR

    createprocess and sending to the results to a file

    hi, i am calling an executable file ( which i dont have the source ) with createprocess. i need to get the results the new process to a text file so i am using createprocess like below: createprocess(NULL,"abc.exe > a.txt"...); this doesnot work. anyone has any clue? Read between the lines
  5. DeCoDeR

    WM_CTLCOLORSTATIC does not work

    Hi, i have a dialog and a static text on the dialog. when i create the static on the dialog, the background for the static text is different so i capture WM_CTLCOLORSTATIC message and coded like below but still it does not work. any ideas? ========== hCaption1 is the handle of the static control...
  6. DeCoDeR

    text's background

    hi i create a window from main function with the wndclass's background as wcl.hbrBackground= (HBRUSH)GetStockObject(WHITE_BRUSH); now when i try to add a text at wm_create message with createwindow("static") and set the text wirh setwindowtext, the background of the text is gray not white. how...
  7. DeCoDeR

    convert html to pdf

    i found something interested and i m looking at that right now. i download php and find some free solutions to php. fromconsole i am calling php.exe convert.php and it is working. i will let u know if i come up with a FREE solution Read between the lines
  8. DeCoDeR

    convert html to pdf

    hi, a html page is created dynamically by reading some values from database. my problem is to convert this html into a pdf file and store this pdf in the database. i cant find a free solution to convert html to pdf . does anyone have any idea ? Read between the lines
  9. DeCoDeR

    richedit

    how can i create a richedit without mfc ? below code gets an error message of 1407 which means class name not found -=----------- HINSTANCE hInst; static HWND hwndRichEdit = NULL; DWORD dw; switch (msg) { case WM_CREATE: hInst = LoadLibrary("RICHED20.DLL"); if ( NULL == hInst) {...
  10. DeCoDeR

    CreateDialog and WM_INITDIALOG

    Hi, I create a dialog with resource editor, i also open the resource.rc as text and add CLASS tag. Then i try to use CreateDialog api to show this window and do some processing. Although i expect to receive WM_INITDIALOG message to initialize some variables i never get this message. some part of...
  11. DeCoDeR

    desktop background image

    hi, what are the apis to change background desktop image and screen saver dynamically like webshots does? thanx in advance regards Read between the lines
  12. DeCoDeR

    scroll bar and text displaying

    hi, i try to display the content of a text file in my application ( mo mfc, just win32 apis) first i read all the contents of a file to a char array. when it is time to display it, i failed. i can display only the contents that fits the window. can anyone show me an example how to handle...
  13. DeCoDeR

    adding document/view to dialog based application

    how can i add document/view support to my dialog based application ? Read between the lines
  14. DeCoDeR

    menu element check/uncheck

    still its not working ;( ------- i put a messagebox to see if boolean variable is working and yes its working. but still i dont see a check. ------- void CMenudeneDlg::OnDeneme1() { bChecked = !bChecked; if(bChecked) MessageBox("bChecked = TRUE","bChecked"); else...
  15. DeCoDeR

    menu element check/uncheck

    unfortunately that doesnot work. here is the latest source that doesnt work -------- void CSayiDlg::OnUpdateRaceTime(CCmdUI* pCmdUI) { bCheckTime = !bCheckTime; pCmdUI->Enable (TRUE); pCmdUI->SetCheck (bCheckTime); } Read between the lines
  16. DeCoDeR

    menu element check/uncheck

    hi , i have a menu and i want to check/uncheck one the elements of this menu below code is not working, anyone has ideas ? --------- void CSayiDlg::OnUpdateRaceTime(CCmdUI* pCmdUI) { iCheckTime = ++iCheckTime % 2; pCmdUI->Enable (iCheckTime); } Read between the lines
  17. DeCoDeR

    window creating

    Hi , I try to write a program using win32 apis. i create a new project from vc 6.0 ide. i insert predesigned dialog as resource and i want to use this dialog as my main window. how can i achivee this ? i mean, we use CreateWindow api but how can i combine my dialog with createwindoýw ? Read...
  18. DeCoDeR

    Circular dialog

    thanx :O) Read between the lines
  19. DeCoDeR

    Circular dialog

    Hi, How can we create a dialog with circle shape ? and also how can be a dialog transparent ? Read between the lines
  20. DeCoDeR

    listbox

    hi, i add a listbox to the dialog and create a variable control called m_cList. now in somewhere in my code, i call m_cList.AddString("dfdhf"); but i dont see that this string is added to the listbox i also try to call : UpdateData(FALSE); but it does not work Read between the lines

Part and Inventory Search

Back
Top