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 TouchToneTommy 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: MvanH
  • Content: Threads
  • Order by date
  1. MvanH

    Data manip. in memory

    I have to read and write data from and to a specific address in the memory. I tried to use the search but could't find any answers. I have a row of 512 16 bit signals written in the memory by another device that shares the same memory with my Proccesor. Now I have to check and correct those 16...
  2. MvanH

    Stack definition problem

    goodmorning, I'm trying to use a stack in my program. However somethings go's wrong when I declarete my stack in my class the following way: -- stack<int> stackname; I recieve the following errors. -- syntax error : missing ';' before '<' -- error C2501: 'stack' : missing storage-class or...
  3. MvanH

    Pointer to member functions

    Goodday people, I'm trying out some pointer functions in Visual C++, to understand more about C++ I have the following code in one of my class member functions (see bottom of post). What I tried to do is allow the class this function is in to write into the document that is attached to my...
  4. MvanH

    cutting up variables.

    Hello people, I have a big problem, In my program, I recieve an variable with a value from somewere between 10 and 9999. The problem is that this unsigned short variable has to be depicted as 4 characters, like 0031 or 0372. And that's not all. The big problem is the following. The first two...
  5. MvanH

    string to integer conversion

    He people, I feel really stupid for asking this, But How do I convert a number in a string into a integer? I read a line from a file, 'value1 = 1000' By the use of file.readstring(string_with_value); How do I get the value that is now in the CString string_with_value, to a usable 'int...
  6. MvanH

    Change default used font

    I want to change the Font that my Ceditview is using to a font that has fixed wides (uhhh the length from left to right, sorry bad english) like Courier new. When I do this the following way, it doesn't work. Has anybody got an idee? -------------------- CFont m_font; LOGFONT LF; memset(&lf...
  7. MvanH

    Main Titel bar without the name of the file that is opened

    When I launch my program, in the titel bar of the mainview the name of the program is displayed but also the name of the file that is opened. His stringname is drawn on the titelbar between '['and ']' the problem is that the system also includes a number behind this filename... like 1 or 2...
  8. MvanH

    Strange (unwanted) Onfocus/Ondraw feature

    Hello people. I have a very strange feature embedded into my program. And I can't seem to get it out. (as with most features its pretty damm unwanted.) When my program is started (a multiple splitter window with dailogboxes containing buttons and a view on a txt document) everything works...
  9. MvanH

    Scroll down view in OnUpdate();

    Does anybody know how to scroll a document view to the bottom of the document from within the OnUpdate function? I want to scroll down my document that is in a CeditView derived class. I would like to do this in OnUpdate so that the view is scrolled down to the bottom of the document every time...
  10. MvanH

    Directory browser with CtreeCtrl(?)

    hello people, I have to make a dailog in which a user can browse in directories on the network and on the desktop pc. In this dialog he has to be able to select command files in txt form. (which will than be interpreted) I'm trying to use a CtreeCtrl object in a dialog. But I don't know how I...

Part and Inventory Search

Back
Top