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!

Recent content by idinkin

  1. idinkin

    Organizing code

    Can you please explain the way of doing this, give me an example?
  2. idinkin

    Organizing code

    Is there a way to split the implementation and the declaration of a class though?
  3. idinkin

    Organizing code

    Hello, I have two questions: 1. Can I split the implementation and the declaration of a class into two different files? Like it was in C++ using .h and .cpp files. 2. Can I implement two different classes in one .java file? I'm using Netbeans for developing J2ME applications. Thanks!
  4. idinkin

    function name

    Is there a way to get the name of the function where the program is running now?
  5. idinkin

    Direct GXF card access

    Hi all! Anybody have an idea how to directly access the GFX card, to draw on it?
  6. idinkin

    Function Optimization

    Any other ideas?
  7. idinkin

    Function Optimization

    Thank you a lot! I checked the function, it does the gradient filling in 330ms.
  8. idinkin

    Function Optimization

    Thanx. But if I will change double to long the function will not work properly coz I need it to do the filling gradiently. The second idea is impossible too coz I have to get not integer numbers. Thanx for the last one.
  9. idinkin

    Setting/Changing CommandButton Text Color

    You can use API functions...
  10. idinkin

    Function Optimization

    If you don't understand the code please tell me
  11. idinkin

    DLL question

    Thanx!
  12. idinkin

    Bitmap

    I wanna do this coz I make programm a game. And I need a very fast drawing without blinking (with PixtureBoxes it blinks). I need also to aplly Particle Engine, Gradient Filling and it have to be really fast. Can I use the folowing code for this: Function CreateBitmap(Buffer As ScreenBuffer, DC...
  13. idinkin

    Function Optimization

    Hi all! I wrote the following function: Function FillBitmap(Buffer() As Byte, SrcColor As RGB, DestColor As RGB, Width As Long, Height As Long) Dim Red As Double, Green As Double, Blue As Double Dim DeltaRed As Double, DeltaBlue As Double, DeltaGreen As Double SrcColorRed = SrcColor.Red...
  14. idinkin

    Bitmap

    Hi all! How can I load an image and display it on form using API functions. I mean without using Form1.Picture or ImageBox, PictureBoxes. Thanx!

Part and Inventory Search

Back
Top