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

    Using mouse wheel to move vertical scroll bars

    the borland application of the windows api, specifacally the mouse part, should take care of itself. in one application I am working on I have a stringgrid and the scroll mouse usage works with no help from me specifically. similiar results with tmemo and trichedit. no "me" intervention is...
  2. butthead

    how can use findFirst,findnext,findclose to search in subdirectories?

    some code to peruse. [code] char directoryarray [5000] [256]; char filearray [5000] [100]; int RecurseDir (char *dir, char *wild, int x) { // Loads the directoryarray struct ffblk ffblk; int done; char buff [512]; strcpy( buff, dir ); strcat( buff, wild ); done...
  3. butthead

    String Hex # into a value

    the onkeypress event is where I would start.
  4. butthead

    String Hex # into a value

    I am not sure about your implementation so this may be off base. I dont see any reason for this the character "F" is already a representation of a hex value, there is no need to convert. you would just check, using a bunch of if else statements or a switch statement to check to see if the...
  5. butthead

    how to get a 16bit debugger program

    word of warning when searching for td.exe there are many references to the turbo downloader program, and they aint all nice. whatch the download source and be sure you are getting turbo debugger and not turbo downloader. TC
  6. butthead

    Inherited private property to public (InplaceEditor)

    I think the inplace editor is not a public member of the stringrid component. You might try subclassing the stringrid and or the inplace editor to access it. TC
  7. butthead

    Inherited private property to public (InplaceEditor)

    the last link is very helpful and you may find your answer there. It helped me solve some of my problems with the plain jane TStringGrid. http://bcbjournal.com/bcbcaq/index.php?loc=grids http://bcbjournal.com/articles/vol4/0009/Working_with_string_grids.htm TC
  8. butthead

    first time

    google "tasm versus nasm" = 873 hits TC
  9. butthead

    SelectDirectory Causing Error in SVCHOST.EXE

    I think the problem here is that the desktop and mycomputer is not necessarily the directory structure you think it is. the desktop on window 98 folder is in the c:\windows directory and my computer is propably somewhwer similiar. my desktop is a construct and not necessarily a folder...
  10. butthead

    Problem with loading memo from text file..

    you can take an exe file and convert the extension to txt and open it , or attempt to open it in a text editor. as you noticed some editors attempt to translate all the characters into their text readable form. hence all the smileys and such. some just stop reading the file at the first...
  11. butthead

    SelectDirectory Causing Error in SVCHOST.EXE

    I got intermitent problems with builder 5 also. it seems that I can compile a project I have been working on for some time now and it works fine. then I add one line of code and the thing goes poof. it wont run in the IDE. I delete obj, tds everthing that is not source, even reboot and still...
  12. butthead

    Title bar width

    something to consider would be using a font that has a fixed char size. I think courier new has this property. since you now beforehand by previous tests, what length of char of this font will fit into a certain length you can size your string accordingly. TC
  13. butthead

    Using Registry for settings

    yur corporate environment is very lakadaaisical if they are allowing the user to install software. in my company no one installs anything. this is thanks to the goober that almost wiped out the system by letting a virus into the corparate net. only the IT dept installs software. the code to...
  14. butthead

    Keystrokes Stored in Memory

    you got the star dude cause I just had the opportunity to search the temp files to recover a lot of work I had thought I had lost. I inadvertently did a quick exit from windows and I had not saved the doc. I remembered your post and it saved me a lot of grief. thanks bunches. TC
  15. butthead

    Numerical processor/floating point operations - need tutorials

    The Art of Assembly Language Programming this book has some detail on Float stuff in asm. some of it might be specific to HLA but I am sure you can get some good info from it. download here for the text. There are 36 pages on floating point math. look in the chapter on "Real Arithmetic"...
  16. butthead

    Beginner: mkdir undeclared?

    my copy of kerny and ritchie has no reference to mkdir. you did not do system ("mkdir tempdir"); or something similiar did you. as mkdir is a dos call. I am sure you knew that though. I am sure to find out otherwise if some one has a library function for such an animal. TC
  17. butthead

    How do I use Static text as Dialog

    an inline expansion of the problem would be appropriate at this time. TC
  18. butthead

    AnsiString VK_RETURN

    the row/col property is set when you click on the cell of the stringrid. these objects dont have any events directly linked to them. when you click on the stringgrid these properties are set. then you can access the cell. Edit1->Text = StrGrid->Cells[StrGrid->Col][StrGrid->Row]; you know...
  19. butthead

    XtPointer

    int i = 68; void *client_data; client_data = (void*)i; int idx = (int)client_data; no problems in borland here. question; how is a xtpointer different from a good ole void*. did you modify this aspect of the code or is this original to the project form the start. meaning it...

Part and Inventory Search

Back
Top