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 Wanet Telecoms Ltd 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: katenka5
  • Content: Threads
  • Order by date
  1. katenka5

    Label flickers when contents change

    I have two labels where contents change during run-time. Caption changes on one depending on the actions and on the other one I have the timer. When both of them change their captions they flicker, how do I get rid of that? I tried to make them transparent or non-transparent, play with different...
  2. katenka5

    Saving colors in binary files

    How do you save a color in a binary file? Do you assing special values to R, G and B, or you can actually save a hexadecimal color value as string and then use it, if so, then how do you convert it back?
  3. katenka5

    NullPointerException help needed

    I am getting a NullPointerException error and I cannot see where it is. It points to line 19 but I can't find what's wrong. import java.awt.*; import java.lang.Object; public class Algorithm { public static void main (String args[]) { int deletedLines = 0; Label...
  4. katenka5

    NullPointerException help

    I am getting a NullPointerException error and I cannot see where it is. It points to line 19 but I can't find what's wrong. import java.awt.*; import java.lang.Object; public class Algorithm { public static void main (String args[]) { int deletedLines = 0; Label place[][]...
  5. katenka5

    Window resizing

    I want my window to return to its original size if the user tried to resize it. afx_msg void CWind::OnSize(UINT,int x,int y) { }
  6. katenka5

    Detecting which button was clicked

    I have a number of buttons which are stored in a two dimensional array. How do I make the program to know what button I clicked on? Something like mouseClicked event in Java.
  7. katenka5

    Fixed window size?

    How do I make a window (system window) with a fixed size so users will not be able to resize it?
  8. katenka5

    Help with Game 15 needed

    I made a game of 15 which works just fine with mouse clicks. I want it to respond to keyboard clicks such as left, right, up and down keys. How do add that feature to this code? I tried KeyDown, KeyUp, KeyPress and they just won't reaspond. I tried it on both the actual form and the button...

Part and Inventory Search

Back
Top