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

    Help with COM

    Hi. Here's a list of tutorials I came across while taking up COM. Hope u find them useful. COM tutorial: Simple; "why COM?" http://www.proobjectmentor.com/ArticlesIndex.htm COM, OpenGl, MFC, DierctX & other tutorials. http://www.acm.uiuc.edu/windevils/workshops.shtml COM Tutorial...
  2. cs1

    OpenGL + MFC ??

    http://www.opengl.org/developers/faqs/technical/mswindows.htm#mswi0160 Read the section How can I use OpenGL with MFC? ftp://ftp.frii.com/pub/martz/outgoing/GlView.zip HTH
  3. cs1

    tabbing between controls in VC6

    Have you written handlers for the controls? (Only then, they'll be enabled). Tabstop attribute WS_TABSTOP will enable the control get the focus on tabbing.
  4. cs1

    IE 6 locks up when a new window pops up or is opened

    I run Windows2000 Pro with IE5. I faced the same problem (IE getting stalled when opening a new webpage/window) even without upgrading to any new version of IE. All of a sudden I started having this problem. After much frustration and meddling with IE settings, I created a new user and enjoyed...
  5. cs1

    MiniMax algorithm with alpha-beta prunig

    I have no previous knowledge of this game. The Artificial Intelligence book that I mentioned has detailed explanation of strategies used in several games, how to compute the alpha-beta cutoffs... You will get many ideas by reading it. The 2 factors that I mean are: 1. The displacement of the...
  6. cs1

    Multiple Dialogs Problem

    I understand what you mean now. Write a handler for the "focus out" message for each dialog box & place the code for hiding the dialog box there. This way, when you click the main window, it will be unobscured. Does this work? - Karthika
  7. cs1

    A Linux novice seeks help :-)

    1. You must use the "auto" keyword (check out the line of options for your hard drive) to automount a device. 4. There's bound to be an autostart folder. Search from "/". - Karthika
  8. cs1

    Using GNOME Things "Disappear" into task bar

    Check if you have enabled the "hide" (or some such name) option in the window manager settings. Alt Tab would list the windows that are open and you can check if they are all intact. - Karthika
  9. cs1

    C Compiler Editor

    Turbo C/C++? It has a really nice editor & debugger. You can also try Borland. - Karthika
  10. cs1

    c projects

    If you have some knowlegde of system sw, why don't you consider developing an assembler? Or a small simulator for some processor? If you opt for Graphics, you can do some real-time simulation. Or a games software... - Karthika
  11. cs1

    MiniMax algorithm with alpha-beta prunig

    Can't the distance of the wall developed thus far be a deciding factor? You can also count the number of moves made for that... Have you read Elain Rich & Kevin Knight's "Aritificial Intelligence" book? It has an elaborate explanation on alpha-beta cutoffs. - Karthika
  12. cs1

    Multiple Dialogs Problem

    Don't use the DoModal function to create & display the window. Use a modeless approach instead. Eg. if you dialog classes are CMyDlg1 & CMyDlg2, then do CMyDlg1 dlg1; CMyDlg2 dlg2; dlg1.Create(IDD_DIALOG1); dlg1.ShowWindow(SW_SHOWNORMAL); dlg2.Create(IDD_DIALOG2)...
  13. cs1

    Application Name Hlp. Pls

    Open the String Table for the application (it is one of the resources). Change the fields of the string IDR_MAINFRAME. I am giving a description of the 7 fields. Modify whatever you want, but be careful. ************************************************************ The document string is a...
  14. cs1

    Hi! I was wondering if anyone kn

    Where exactly d you want to place the resizing code? You can try the SetWindowPos function, which allows you to place a window at a new position & occupying the area you specify. - Karthika
  15. cs1

    compiler not detecting the error !!!

    What error do you expect the compiler to throw? Can you give more detail about what it is all about? - Karthika
  16. cs1

    installing linux

    Have a look at Cygwin, a UNIX environment for Windows. http://sources.redhat.com/cygwin/ - Karthika
  17. cs1

    Problem with deconstructors

    It should be delete date and not delete &date - Karthika
  18. cs1

    Api's for Image processing

    What sort of processing do you mean? What do you want to normalize? You can check out MS Vision SDK. It gives classes to represent images. The beta version is avl. at msn.com It has some sample projects. Hope that helped. Karthika
  19. cs1

    number seperations

    Shouldn't it be float y; int x; int z; /* result */ y = 100.5; x = y; /* x = 100 */ z = (int)(y * 10.0) % (x * 10); /* Ans: 5 */ (I have not tested it!) - Karthika
  20. cs1

    Someone can I explain me everything about data type?

    Hi! Data types are used to classify data that we manipulate in programs. Each variable we declare must be of a certain type. For eg., we have integers, characters, strings, real values (float) and so on. Based on the data type, the compiler allocates certain amount of memory to the variable...

Part and Inventory Search

Back
Top