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 Chriss Miller 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. thiefmaster

    path to my program

    I'm trying to figure out how i can find the path to my program that I'm running. eg. if the program is in c:\myprog.exe, then the variable would be "c:\myprog.exe" I know how to do this in C++ with argc and argv. then, all I need to do is take the value from argv[0]. However, my...
  2. thiefmaster

    MS Access database access in C++

    I'm writing a program that needs to be able to connect to an Access database. Does anyone have any suggestions as to where I can get information regarding this? I've done a lot of work with Access using ADO in VB, but my program that I have is written in C++... Thanks
  3. thiefmaster

    bitmap storage

    Hello. I have an app that uses a lot of bitmaps... Is it possible to have a dll file that stores the bitmaps and allows me to import the images in my main program? If so, how do i go about doing it? thanks in advance thiefmaster
  4. thiefmaster

    Status Bar Question

    Hi. I have a menu and a status bar in my program. I found this article on the net -> http://www5.zdnet.com/pcmag/pctech/content/15/04/pp1504.001.html <- which showed how to make it so that when you went over items, it would update the status bar accordingly. The only problem with this code is...
  5. thiefmaster

    antialiasing fonts

    Hi. I'm trying to figure out how to antialias a font so that it looks right in comparison to the rest of my bitmap. Here's the code that I'm already using: bitm = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP2)); GetBitmapDimensionEx(bitm, &amp;size); GetClientRect (hDlg, &amp;rect); hdc1 =...
  6. thiefmaster

    Rich Edit Formatting

    I figured out how to display a rich edit box and to get my text in it superscripted, but I ran into another problem. How can I make it so that the superscripted text is not cut off? As it is now, you cannot see what is in superscript. I've already adjusted the control's editing rectange by...
  7. thiefmaster

    Rich Edit Boxes

    I'm having trouble using a rich edit text box. Here's the code I'm using. LoadLibrary(&quot;Riched20.dll&quot;); hwndObject = CreateWindowEx( WS_EX_CLIENTEDGE, TEXT(&quot;RICHEDIT_CLASS&quot;), TEXT(&quot;me&quot;), WS_CHILD | WS_VISIBLE | ES_READONLY, 300, 50, 100...
  8. thiefmaster

    Using the TIMESTAMP Predefined Macro

    Hello. I'm having a problem with the TIMESTAMP Predefined Macro. Perhaps it's just not what I need to use, but I'll find out. I want to make it so my program has the date and time of build encoded in it in such a way that my program can view this information in the about box. eg. About my...

Part and Inventory Search

Back
Top