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!

Search results for query: *

  • Users: Spent
  • Order by date
  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
  16. Spent

    How to Rename the Recycle Bin ?

    Hello group, I heard that there is a way to rename the recylce bin by changing a value in a Registry Key.What is it ? Thanks Spent
  17. Spent

    New Line in FileStream

    As I can remember newline was with character #13 or #10. Don't have a Delphi now and Can't tell you exactly which one is. Try both of them. Spent
  18. Spent

    Mysterious pop-up

    In most cases this is not an actual problem just an Ad-Aware or small virus. Scan your PC with the latest updates of your anti-virus program and try also some Ad-Aware removing tool. Also in Control Panel-> Add Remove Programs, look for a program that you did not install. It's not only an...
  19. Spent

    How to set Password on Shared Folder and Remote Desktop Connections

    Hello group, I am using Windows XP SP2 on a local network with quite a lot "unfriendly" users. Can you tell me how to set password on my Shared Folders(Printer is always shared, don't know how to "unshare" it) and on the Remote Desktop Connection. Or even better how can dissable RDC. Thank you...
  20. Spent

    Dataset Manipulation

    In other words you can do this if (dsEmps.Tables.Count > 0) { foreach (DataRow row in dsEmps.Tables[0].Rows) { if (row["EmpID"].ToString() == "1" || row["EmpID"].ToString() == "2") { row["EmpID"] = row["Emp_Name"].ToString() + " - manager"; } else...

Part and Inventory Search

Back
Top