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 Rhinorhino 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. StoneColdCrazy

    TStringGrid - is it a right compo. for what I'm doing?How to print it?

    A program; called Multiplication Fact Table Generator, it uses TStringGrid control for the fact table, and it suppost to print out the results (just like you would see in a math book). I having trouble printing the contents of TStringGrid, either I don't know how to do that, or I'm using a...
  2. StoneColdCrazy

    the optemizing beast, that thing is too much for me

    I am poor at implemention efficient algorithms, I can write almost anything, but that anything isn't always fast enough. <br><br>Can someone help me to understand how to make things faster?<br><br>Here is a flipping-the-image algorithms I wrote a year ago, don't use it anymore, so I won't...
  3. StoneColdCrazy

    num*num, at compile time or runtime

    case 1).&nbsp;&nbsp;int a = 50*20;<br>case 2).&nbsp;&nbsp;int b=50, c=20, a=b*c;<br><br><br>When we compile that, will the resulting code in case one be a=1000 or will the code multiply 50*20 in order to get the number?&nbsp;&nbsp;Same question about case 2... <br>??<br><br>Is there a mandatory...
  4. StoneColdCrazy

    C++ Q, num*num, resulting code

    1).&nbsp;&nbsp;int a = 50*20;<br>2).&nbsp;&nbsp;int b=50, c=20, a=c*b;<br><br>Will the compiled code in case 1 multiply 20*50 in order to get the number a, or will that operation be performed at compile time??&nbsp;&nbsp;Same question about case 2??<br><br>NOTE: I using Borland C++, and the...
  5. StoneColdCrazy

    do u know better way of tracking CaretPos?

    In TMemo or TRichEdit, when u write a text editor, for example u want to display the caret position in your status bar, the way I currently doing it is like this:<br><br>// in my RichEdit-&gt;OnKeyDown event handler<br>//-----------------------------------------------<br>/*some params r...
  6. StoneColdCrazy

    menus, jus like in C++Builder IDE

    Have u seen a C++Builder IDE's menu, sure u did, if u using C++Builder. It rested on a CoolBar or a ControlBar, along with tulbars that u can move around. I know how to implement a UI like that with toolbars, but don't know how to do it with menus.&nbsp;&nbsp;Any help will be...
  7. StoneColdCrazy

    also, TRichEdit

    is there a limit on how much text TRichEdit can hold?&nbsp;&nbsp;(plain text)
  8. StoneColdCrazy

    TMemo, how long

    How much text VCL's TMemo can hold?<br>When it reaches it's maximum size, how can I know that?<br>
  9. StoneColdCrazy

    Long Hints, &quot;For help, press F1&quot;

    I got this situation here, I display a long hint on my statusbar's first pannel, by setting StatusBar-&gt;AutoHint property to true.. What I need now is, when there is no hint to display I want to be able to display a string, like &quot;For help, press F1&quot;..<br><br>How do I do that? Is...

Part and Inventory Search

Back
Top