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

    DHTML Object Moving

    i found a bit of code on the web, yet it is declairing error on page. i've isolated the code to document.all.image1.style.pixelLeft=400; image1 is image1 (the image/object name) because of a previouse document.images[1].name="image1"; the actuall code appears as ...
  2. elfanddot

    problem with save on CTreeView view when variable is > 0;

    The program uses multiple view class' with one document class. The views are changed with menu options. When i add some elements to the document and open the Tree view, every thing is fine. When i add more than one of a certain element everything is fine. When i save everything is fine...
  3. elfanddot

    Personal Web Server

    I'm new to SQL and I'm trying to get the Enterprise Manager to Recognize Microsoft's Personal Webserver and In every option I get an error that reads: ConnectionOpen(gethostbyname()())... Im mainly a programmer so to me this looks like a glitch of somesort( the ()() is what i mead). I'm trying...
  4. elfanddot

    huge array

    I've never used a linked list and therefor i will try. Thank you
  5. elfanddot

    Web Browser

    maybe isert into the message map a enter key hit message? although,ive never used the cppwebbrowser component before does this happen when working with any other mail services/programms?
  6. elfanddot

    sending a key press to another window/application

    may not be entirely appropriate. send keystrokes to a file and continuously wait for update also good with a protected memory address, protected so no programms decide to use it, confusing the reading program.
  7. elfanddot

    multiple case switch

    it is currently a if.ifelse.else section thank you p.s. the case 1 to 5 was to save typing and reading space!
  8. elfanddot

    huge array

    visual c++ and one day maybe djgpp(but not yet) also have parts of borlandc 5.. but not setup yet (kindof like 3.1) so i should try something with expanded memory? i don't really like visual c for dos, probably because the code was written for windows. there is an image size option in bc3.1...
  9. elfanddot

    huge array

    any help is appreciated! i tried an array like UINT a[800][600] in a structure and got a structure to big; i tried UINT huge a[800][600] and the same result attempt was made on borlandc v3.1 also, i noticed that when not in a structure or class that the huge definer works.
  10. elfanddot

    multiple case switch

    any help is appreciated i need something like this swith(a) case 1 to 5: break; case 6 to 10: break; i remember seeing it in school, yet i forgot it!
  11. elfanddot

    error in posix threads.

    any of you have a good multithreading library/header that will compile in borlandc3.1 and work in dos. <-i know dos doesn't support multithreading, but it'll weave given some yarn and a needle. i did find a library, but it wouldn't link, and im not good with the mechanics of stacks, etc yet...
  12. elfanddot

    Socket programming

    familurize yourself with network type and their protocols. Find libraries that work with tcp/ip etc. Learn how to access the modem and read/write from it, or the comm/serial ports. If writing your own libraries, make sure you can work with some kind of ip address (for a intranet). if your...
  13. elfanddot

    program to program communcation

    thanks, been attempting mulithreading in dos. the libraries i found aren't working, so im still looking for a good library/include file. Anyone with suggestions.
  14. elfanddot

    program to program communication

    i found a library for multithreading after i posted the message. i havent used it yet but have read the instuctions/description and found it close to what im looking for yet not exactly. ive modified the programm that im working on to simulate multithreading and windowsmessaging and right now it...
  15. elfanddot

    program to program communcation

    Thank you even if you can't answer![sadeyes] Does anyone know of or explain a method of either communicating between two program (one main, one child) in a dos environment. I need to either start a program from within another program with some starting arguments and ignore the program, or i...
  16. elfanddot

    program to program communication

    Thank you even if you can't answer![sadeyes] Does anyone know of or explain a method of either communicating between two program (one main, one child) in a dos environment. I need to either start a program from within another program with some starting arguments and ignore the program, or i...
  17. elfanddot

    start program

    Thank you even if you can't answer![sadeyes] Does anyone know of or explain a method of either communicating between two program (one main, one child) in a dos environment. I need to either start a program from within another program with some starting arguments and ignore the program, or i...
  18. elfanddot

    interrupt vector

    perfect, that will work and i think i can retain it in the class structure. my next move was going to be write duplicate header files w/ each member named diferently like a_... or b_... . which would have consumed memory, time, processor, etc. thank you
  19. elfanddot

    Interupts

    this code was written for c, didn't find that out until i change the compiler to c only, i have fixed the code to work with c++ though. the interrupt handler needed to be void interrupt inthandler(...) and i pulled the handler and install/uninstall out of the class/struct. im currently working...
  20. elfanddot

    Will someone please give me an example of a Working class!!

    this will answer very little try Teach Yourself C++ in 21 days @ http://free.prohosting.com/~tml/cpp/ //////header.h class Cheader { private: int a, b; public: int geta() { return a; } int getb() { return b; } void seta(int A) { a=A; } void setb(int B) { b=B; }...

Part and Inventory Search

Back
Top