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 Spent

  1. Spent

    TPageControl transparent background

    About you problem, why dont you create a second PageControl which will be above the first, won't be transparent and only the tab buttons will be visible. All you have to do is to connect the two pagecontrols so that when Active tabsheet is changed in the second tab, the first changes too. It's...
  2. Spent

    how to play multiple sounds(.wav) together

    It seems that this problem is only on older versions of Windows like ME. On WinXP the TMediaPlayer is working fine with 4 sounds playing at one time.
  3. Spent

    TPageControl transparent background

    I am wondering, will it work for any VCL component if I replace MyPageControl.Handle with the Component's Handle,because if was something similar to make a form transparent?
  4. Spent

    Picture Scrolling

    A Direct aproach(may be the same as Nordlund is telling, but I dont have Delphi now and can't see what the example is) is to : create a TScrollPanel( not 100% sure about the name) put inside a Image1:TImage with In Object inspector Image1.Top:=0; Image1.left:=0; Image1.AutoSize:=true; Aslo...
  5. Spent

    CopyFile?

    A little Example for you var dlgOpen:TOpenDialog; .. if dlgOpen.Execute // CMDialog.Filename <> "" then CopyFile(dlgOpen.FileName,..); Tell us if you have any results Regards, Spent
  6. Spent

    forgive me for asking this question......

    Ops My mistake I though I am in the Delphi forum. In ASP.NET should be DateTime.Parse() and .ToString().
  7. Spent

    forgive me for asking this question......

    Have you tried DateToStr and StrToDate functions ?
  8. Spent

    Problem with Word Interop ,NET c#

    I am using a little different approach.Here is the code: object myFalse = false; object myTrue = true; object missingValue = Type.Missing; string workname = @"C:\Inetpub\wwwroot\....\Doc.doc"; Word.ApplicationClass wApp2 = new Word.ApplicationClass(); // open document object...
  9. Spent

    Combining multiple controls within one VCL....

    TLabelEdit can be found in the last tabs in Delphi 7 version.It is a combination TLabel above TEdit in one component. About you problem, try to be more specific. I can not understand the exact problem you have.
  10. Spent

    Screen saver coding

    Are you starting the application with the correct parameters /p as first param and a handle of a windows (not sure about argument2). If you dont set a param you wont go into if SSMode = ssPreview then begin part. My second idea is procedure TScrn.FormActivate(Sender: TObject); var...
  11. Spent

    how to play multiple sounds(.wav) together

    I found that DelphiX package components will do. Does anyone has experience with DXsound, or TWAveStream. I can't make it play the sounds.
  12. Spent

    finding text lowercase or uppercase

    string TargetString; // We replace here string key; // replace what string NewKey; // replace with this We will find the position ot which the string is, remove the old and add a new one. But to be case sensitive we will search when both strings are in Lower int pos...
  13. Spent

    Need datagrid hyperlink to call subroutine when clicked

    On the dataGrid rightcick Property Builder->Columns and add hyperlink column Then use the event ItemCommand to call you routine Here is an example: private void DataGrid1_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { if( e.CommandName == "Select")...
  14. Spent

    Logging on - changing the logo

    The program StyleXP might fit your needs. It changes login ,logout screens, themes etc. Spent
  15. Spent

    Prevent PC from accessing Internet

    You can use a firewall and "lock" the PC not to use Internet. But in this case you will cut of the local network too. Spent

Part and Inventory Search

Back
Top