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: idog
  • Order by date
  1. idog

    Creating Modal Window

    The problem occurs when I create a child window. I can't disable the parent because when I disable the parents the child are also disabled How can I prevent it? I want only the parent to be disabled. /*********************/ // Ido Grinblat // ido@grinblat.com // idog@cet.ac.il...
  2. idog

    Creating Modal Window

    Well.. I have manage to ceate a popup window. But I want it to be a child window. I can't do it because When I disable that parent window the child window is also disable. How can I make it to work as a child window? /*********************/ // Ido Grinblat // ido@grinblat.com // idog@cet.ac.il...
  3. idog

    Creating Modal Window

    Well. I've try this: int CMyWnd::DoModal(CWnd *p) { CString st = AfxRegisterWndClass(CS_HREDRAW | CS_VREDRAW,0,::CreateSolidBrush(RGB(0,255,0))); Create(st,"idog",WS_VISIBLE | WS_OVERLAPPEDWINDOW,CRect(20,30,50,70),p,0); RunModalLoop(); return 0; } From the calling...
  4. idog

    Creating Modal Window

    Hello, I want to create a modal window like modal dialog box. But I don't want to Inherit my class from CDialog, only from CWnd. I mean something like that: myWnd.DoModal() any idea?? thanks in advance /*********************/ // Ido Grinblat // ido@grinblat.com // idog@cet.ac.il...
  5. idog

    Aggregate Function...

    I don't understand... What is "YourOr(Score,ID) What is "Score", What is the ID?? /*********************/ // Ido Grinblat // ido@grinblat.com // idog@cet.ac.il /********************/
  6. idog

    Aggregate Function...

    That is not what I need. Let say I have a table which have two fields. 1. myID - This field have duplicate values 2. myScore. In my Query the myID field is grouped by. I want that on every same value of myID it will multiple all the value of myScore. For example If I have a table like that...
  7. idog

    Aggregate Function...

    Well... I that the function will take strings and make something like OR data between them... for example: 010010 (string) OR 011000 (String) = 011010 /*********************/ // Ido Grinblat // ido@grinblat.com // idog@cet.ac.il /********************/
  8. idog

    Aggregate Function...

    Can I create Aggregating function by my self? Like Sum, Avg, Max etc.. /*********************/ // Ido Grinblat // ido@grinblat.com // idog@cet.ac.il /********************/
  9. idog

    MessageBox error (hard one)

    I think I know what your problem is. When you call 'MessageBox' function from a class which is derived from the class 'CWnd' the function only get 3 parameters (it is the MFC MessageBox Function). If you still want to call the API function you should add '::' before the function. ...
  10. idog

    Add NT workstation To the domain

    The ghost is an excat image of my harddrive after it is already register in the domain. Ido Grinblat CET Shifat Tel: 972-3-6460144 972-3-6460138 Fax: 972-3-6460009
  11. idog

    Add NT workstation To the domain

    My Nt workstation is register in the domain. I often need to reinstall NT. When I reinstall I need to go to the network administrator and ask him to delete my name from the domain and create it again. I have try making a ghost to my harddrive. When I reinstall my ghost I still needed to go to...

Part and Inventory Search

Back
Top