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 wOOdy-Soft 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 Decster

  1. Decster

    Get results from search engine?

    No but they may have a differant "String A"!
  2. Decster

    How do I get search results from a search engine in my program?

    void __fastcall TForm1::Button1Click(TObject *Sender) { String A = "http://www.altavista.com/sites/search/web?q="; String B = Edit1->Text; String C = "&FORM=SMCRT&cfg=SMCINITIAL&v=1&un=doc"; String Address = A + B + C; CppWebBrowser1->Navigate(WideString(Address)); } Go to all you...
  3. Decster

    Get results from search engine?

    Here's how I did it: void __fastcall TForm1::Button1Click(TObject *Sender) { String A = "http://www.altavista.com/sites/search/web?q="; String B = Edit1->Text; String C = "&FORM=SMCRT&cfg=SMCINITIAL&v=1&un=doc"; String Address = A + B + C...
  4. Decster

    How do I stretch an avi file to fill my panel?

    try this.... MediaPlayer1->DisplayRect = Rect(0, 0, Form2->Panel1 ->Width, Form2->Panel1->Height);
  5. Decster

    How in the heck do I get TPage Scroller to work?

    I am trying to get it to work on a CoolBar with a PageControl in it!All I get is a grey arrow and when clicked the page scrolls once and the arrow disappears.
  6. Decster

    How do you do Redo in BCB5?

    I have the standard Undo set in my main menu but how do I get Redo to work?
  7. Decster

    changing speaker volume

    Here's what I did with Win '98: //------------------------------------------------------- void __fastcall TForm1::SpeedButton2Click(TObject *Sender) { STARTUPINFO Info; PROCESS_INFORMATION ProcInfo; memset(&Info,0,sizeof(Info)); Info.cb = sizeof(Info)...
  8. Decster

    Gutters?

    Thanx! I'll look into it.This has to be the biggest secret in programming or the least used because I have been all over the net and can only find 1 commercial componant that offers it and they want like 100 bucks for it!
  9. Decster

    Gutters?

    Can someone please tell me how to make a RichEdit have a left gutter like in HTML editors? Thanx, Dex

Part and Inventory Search

Back
Top