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 strongm 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. werbfred

    what is an activeX?

    An activeX componnent is something like a tool that you can share with different windows applications independent from the language in which the programm has been written (VB, VC, etc...) For example, when you make a copy/paste action from an explorer window to another application (FTP...
  2. werbfred

    Icon and toolbar in more than 16 colors, i.e 256 colors

    Ok, it seems that I wasn't very clear. The technique for replacing the applications icon works fine. Now the problem I got is using 256 colors images for the buttons in the toolbar. So to have a simple example I used a toolbar composed of three buttons with a size of 20 by 20 pixels (The...
  3. werbfred

    Icon and toolbar in more than 16 colors, i.e 256 colors

    I tried out tchouch's method ... but I have black icons instead. I build a toolbar with two 20*20 pixels icons and the result is two black icons. Before I resized the old 16 color Toolbar. What did I wrong ... ? Thank you
  4. werbfred

    Icon and toolbar in more than 16 colors, i.e 256 colors

    I would like to know how I can change the Icon and the toolbar of and application to let me use more than 16 colors. I'm able to create an Icon with 256 colors, but how do I associat it to the application. There are many different Icon sizes corresponding to the different states of the...
  5. werbfred

    3D Rotations

    Just to enable E-mail notification on that post
  6. werbfred

    3D Rotations

    It would be nice if you could specify a little better your purpose. You're talking about a plane along the Z axis, but a plane is 2D so the plane should be along Z and X or Z and Y, or better is Z the normal of the plane ? When you do 3D programming you have to be very precise. You won't get...
  7. werbfred

    3D Rotations

    Can you specify what you get and you want to abtain, cause it's a little bit confusing what you wrote ...
  8. werbfred

    randomize() in Visual Studio 6.0

    You have to use srand(unsigned int) to start random and "rand ()" to get values...
  9. werbfred

    SetTimer not working with visible CDialog.

    It seems to me that the call : int result = this->SetTimer (1, 100, NULL); creates a timer with an intervall time of "100 ms" and not "100 s". And so you don't have the time to see the dialog box to get open since it is closed within 0.1s. Try : SetTimer (1, 100000, NULL);
  10. werbfred

    How do you send text to msflexgrid using a button?

    Hi, I did something that migth help you... I created an edit box that I hided. When I click on a cell of the flexgrid, I copy the text from the hidden edit box into the flexgrid. For this I use methods : "GetCol()" "GetRow ()" to determine which cell I...

Part and Inventory Search

Back
Top