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. chrisdl

    How do I send a WM_PAINT message to my window or trigger a WM_PAINT?

    Try using the Invalidate() function. -Chris (Consultant / Software Engineer)
  2. chrisdl

    FireFox Javascript function problem

    I was working on a more complex javascript program that was working in IE. I reduced the problem to it's simplest form. This very simple program does not work on FireFox. I need to get this concept to work to do many parts of my larger project. Can you get this to work on your version of...
  3. chrisdl

    FireFox Javascript function problem

    This html page works fine in IE but in FireFox it says func1 is not defined. In FireFox you can open the JavaScript console under the tools menu to see JavaScript errors. --------------------------------------------------- <HTML> <HEAD> </HEAD> <BODY> <SCRIPT LANGUAGE="JavaScript" >...
  4. chrisdl

    JavaScripts in Firefox

    This html page works fine in IE but in FireFox it says func1 is not defined. In FireFox you can open the JavaScript console under the tools menu to see JavaScript errors. --------------------------------------------------- <HTML> <HEAD> </HEAD> <BODY> <SCRIPT LANGUAGE="JavaScript" >...
  5. chrisdl

    How can I read the typeface name from a .ttf file

    Take a look at: http://www.wotsit.org/ -Chris (Consultant / Software Engineer)
  6. chrisdl

    Turbo C Help (back to the old days)

    I am not sure but I think you can type TCC without any parameters it will give a list of options. -Chris (Consultant / Software Engineer)
  7. chrisdl

    Add or Change Menu on MFC Dialog

    Go to the Dialog properties and set its menu to your menu ID. -Chris (Consultant / Software Engineer)
  8. chrisdl

    can't detect ESC key, MFC

    Have you used PreTranslateMessage? If that does not work you can use a timer and call GetAsyncKeyState. -Chris (Consultant / Software Engineer)
  9. chrisdl

    Communication between programs

    I have used the WM_COPYDATA messages to communicate between programs. -Chris (Consultant / Software Engineer)
  10. chrisdl

    Win98 and IE6 Crash

    I have written an activeX Web control that works fine with WindowsXP/2000 and IE6 but it crashes under Win98 and IE6. Any ideas on what the cause could be? -Chris (Consultant / Software Engineer)
  11. chrisdl

    Using #Version ?

    How do I use the #Version in an HTML file? Which version is it checking against? The INF file or the OCX file version? Here is what Microsoft says: <OBJECT CLASSID=&quot;clsid:dcf0768D-ba7a-101a-b57a-0000c0c3ed5f&quot...
  12. chrisdl

    Communicating with Another Computer in Network

    You could use a TCP Socket control and write a sever progam that receives a TCP message and a client program that sends a TCP message. -Chris (Consultant / Software Engineer)
  13. chrisdl

    Calls to dos.h functions...

    If you are compiling to a Win32 App. (I think the latest compiler can only do this). You will not be able to access old DOS function calls. They are not available to ANY Win32 app. -Chris (Consultant / Software Engineer)
  14. chrisdl

    developing for the mac?

    I do Macintosh software development. I can do database work using RealBasic, Foxpro or FileMaker. Let me know if I can help. chris@DLTechDev.com -Chris (Consultant / Software Engineer)
  15. chrisdl

    How to write the sequnce in C???

    What kind of card are you programming? Is is RS-232, USB or custom? What Operating system? I have written C code for several types of devices. http://www.DLTechdev.com/embedded -Chris (Consultant / Software Engineer)
  16. chrisdl

    Reading data in from Excel

    I know that iwth ActiveX and Visual Basic you can take control of excel and read/write cells. I have not done it with visual C but I think it is possible. You can also save out to Tab Delimited format from excel. www.DLTechDev.com -Chris (Consultant / Software Engineer)
  17. chrisdl

    Flat Data Files - ASCII

    You can use a listbox and format to space out the columns. You could also use a flexgrid control. -Chris (Consultant / Software Engineer)
  18. chrisdl

    Run-time Error '339'

    The package and deployment wizard is in the add-ins menu. If you don't see it there go to the add-in manager (also under the add-ins menu) make sure it is checked. -Chris (Consultant / Software Engineer)
  19. chrisdl

    FireWire camera control

    I want to write code to control a Digital video camera through firewire. I want to be able to tell it to start recording and stop recording and dowload video. What API calls can i use to do that? thanks, -Chris (Consultant / Software Engineer)
  20. chrisdl

    Win32 API or MFC?Please,I need some advice.

    MFC is good for getting and application user interface working. Using the class wizard it is easy to modify and add features to the user interface. This makes development time a lot shorter. Sometimes MFC applications can run a little slow. Most of the time this is not a problem. I would say...

Part and Inventory Search

Back
Top