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: *

  • Users: Mechy
  • Order by date
  1. Mechy

    EditBox highlight and focus problem

    Ok, The ID of the edit box is IDC_EDIT_FLASH_PASSWORD. I create a new control (CEdit, not CString) variable for this edit control with Class Wizard named, m_ePassword. Then I create EN_SETFOCUS function using class wizard and edit the code as follows: void...
  2. Mechy

    EditBox highlight and focus problem

    Hi everybody, This is supposed to be really easy, but I can't get it to work. All I want to do is to automatically highlight the text in the text box when the user clicks on it. This needs to be just like using tab key. Here is the procedure I use: 1) Create a text box and assign a control...
  3. Mechy

    FindWindow to find popup child windows

    Hi, I create a child window using the following statements: m_dChildDlg.Create(IDD_DIALOG_CHILD,this); m_dChildDlg.ShowWindow(SW_SHOW); Now I can find handle of the window and close it by using FindWindow command with the following entry: CWnd* pWnd =...
  4. Mechy

    Tab Control on FormView

    Does anybody know a tutorial link about Tab Control? I think a dialog box can be attached to the Tab Control, but how? Mechy
  5. Mechy

    Tab Control on FormView

    Hi, Can anybody tell me if it is possible to use Tab Control on a FormView? I understood how to use Property pages and Property Sheets but they are used with DoModal() command. What I need is to use Tab control like Property Sheets on a form view (SDI). If anybody knows a link to a tutorial...
  6. Mechy

    Static text invisible on dialog

    Thank you for your time tchouch. I think I found another solution. [thumbsup2] Here is the code: m_dInitialDlg.Create(IDD_INITIALIZING_DIALOG,this); m_dInitialDlg.ShowWindow(SW_SHOW); CStatic *ptr; ptr = (CStatic*)m_dInitialDlg.GetDlgItem(IDC_LABEL1); ptr->ModifyStyle(0,WS_VISIBLE)...
  7. Mechy

    Static text invisible on dialog

    Hi, I've searched the forum but coudn't find a post about this, sorry about reposting if there is any. I am using Create and ShowWindow functions to show an "initializing..." window before my program runs. The problem is, the static text on the window is invisible although the window...
  8. Mechy

    Display Dlg first, then do the stuff...

    Hi, I am relatively new to this VC++ thing and I am coding a simple FEA program. My problem is to display the dialog before the calculations are completed. I use OnInitDialog() to jump to the functions that make the calculations but since the calculations take about 4-5 seconds, nothing is...
  9. Mechy

    Using Visual c++ to solve systems of linear equration

    You have probably got a solution by now but what you need to do is to code the Gauss Elimination method. I had done it before (when I was a student at the university), it is quite efficient and you can even solve a 900X900 matrix if you use pointers(It takes a while though...) Mechy.
  10. Mechy

    output to a multiline edit box

    Thanks PerFnurt, I got it worked... :) Mechy.
  11. Mechy

    output to a multiline edit box

    Hi Guys, I want to get an output to a multiline edit box just like printing to the screen using cout command. What I need to do is to get the int or float variables of an instance of a class and print them to the multiline edit box. Let's say the class has two float variables like LX=2.0 and...

Part and Inventory Search

Back
Top