Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

Talktorajeev

@Talktorajeev
About
Posts
20
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • FolderBrowserDialog
    T Talktorajeev

    Hi Folks, I am opening a Folder Browser Dialog. It opens with a help button which I dont want. Any idea how to remove Help Button from this dialog. Thanks in advance.

    C# help tutorial

  • Folks,FolderBrowserDialog
    T Talktorajeev

    Hi

    C#

  • Draw line
    T Talktorajeev

    Hi, I have to draw line with the properties like in MS-WORD like Style and Weight. The Constructor of Pen class ask for Width of Pen in float. How can I relate width to Weight of line. Say I have to draw line of .75 pt then what will be the width of line... Any idea?? Thanks in advance

    C# question

  • Outlook
    T Talktorajeev

    Ya, I am talking about a hyperlink inside a composed email in outlook

    C# question csharp

  • Outlook
    T Talktorajeev

    I have a requirement to create a hyperlink in Outlook using C#. The Hyperlink will point to some .exe file. When I create hyperlink manually in Outlook 2003, it executes the exe file on clicking it. Now I have to do this programmatically. How can it be done?? One more thing how can I pass arguments to this exe file. Any Idea??

    C# question csharp

  • Create custom link in outlook
    T Talktorajeev

    Hi, I have one problem to ask. When I type http://google.com in outlook it appears as link, but when I type only google.com it does not appear as link. I want to know what determines this? I have a requirement to make a shortcut link for opening some file in my image editor. I want to make link like this clicking on which the file opens in my image editor. Link will look something like MyImageEditor://PathOfFile. Any clue? I guess it can be done by thinking in direction “how does a file say .doc file is associated with MS Word”. Regards, Rajeev

    System Admin com help question

  • Mnemonic
    T Talktorajeev

    Thanks Man, It works...:) Regards, Rajeev

    C# design question

  • Mnemonic
    T Talktorajeev

    Hi, I am using Mnemonic with label controls. I have set UseMnemonic true. In design time underline character appears but in runtime , underline character appears only after pressing Alt key not before that. What I am missing? Any clue? Regards, Rajeev

    C# design question

  • Image Draw
    T Talktorajeev

    Hi Folks, I have requirement to print text and image. The text can be printed separately by calling Graphics.DrawString method and image can be printed by Graphics.DrawImage. But I need to print them both in same command. The problem is when I call Graphics.DrawString first and Graphics.DrawImage later image overlaps text. Cann't I print image in next page in same event. Any Solution to it. Regards

    C# graphics help

  • Fax application
    T Talktorajeev

    Thanks Rizvi for ur help. Actually I don't have modem here. But on personal note I make preposterous question to ask that u sport a display name which is different from ur religion. I hop u don't mind and sorry if u take an offence to it. Regards Rajeev

    C# csharp question

  • Fax application
    T Talktorajeev

    Hi techies, Hope u all are fine. I have to develop an application to send fax in C#. So far the knowledge i gathered I need a modem for it. But I have internet connection through LAN not by telephone line through modem. Can I send Fax under this scenario ie without modem? Regards Rajeev

    C# csharp question

  • Windows Service Urgent!!!
    T Talktorajeev

    Hi tried with registry. It changes the display name in Property Window of Service only but not in cosole menu. And also in the object of Service Controller when reading property of the service after making change, DisplayName change doesn't reflect. But I were successgul in changing description. I am adding my code here private void button2_Click(object sender, System.EventArgs e) { ServiceController obj = new ServiceController("Telephony"); Microsoft.Win32.RegistryKey objReg; string str = obj.DisplayName; try { ServiceControllerEx objSercEx =new ServiceControllerEx("Telephony"); string strDes = objSercEx.Description; objReg = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"System\CurrentControlSet\Services\tapisrv",true); objReg.SetValue("DisplayName","Telephony5678"); objReg.SetValue("Description", "DEscription"); objReg.Close(); } catch(Exception ex) { MessageBox.Show(ex.Message); } }

    C# help question

  • Windows Service Urgent!!!
    T Talktorajeev

    Hi leppie, Thanks for your prompt reply. Why its not possible to change display name using ServiceController class and do you know any other approach to do this. Regards Rajeev

    C# help question

  • Windows Service Urgent!!!
    T Talktorajeev

    Hi folks, I am trying to change the display name of Windows Service using DisplayName property of Service Controller class. But the change is not reflected, don't know why? Is it a bug or am I doing something wrong. Reply soon. Thanks in advance Rajeev

    C# help question

  • Add Command bar in Outlook
    T Talktorajeev

    Hi guys, I am trying to add my command bar in OutLook 2000 using dotnet. Do you have nay idea? Thanks

    C# csharp question

  • Windows Service
    T Talktorajeev

    Hi folks, Can any one guide me for a way to change "Startup Type" of windows service in runtime. Any pointer will be of great help. Thanks in advance. Regards Rajeev

    C# help tutorial

  • Modify app.config
    T Talktorajeev

    Hi folks, I am stuck with a problem. I need to read a config file of a windows service. Can any body guide me or give some pointer for this. thanks in advance. Rajeev

    C# help tutorial

  • Populate control on browser client
    T Talktorajeev

    I have some data in XML file. Now I want to populate some control say TextBox with that data from XML file. How can it be accomplished using XSL. Any idea?? Thanks

    ASP.NET xml question

  • Multitab Web application
    T Talktorajeev

    Hi folks, Can any one guide me how to build multitab web aaplication in asp.net. Urgent Thanks in advance Rajeev

    ASP.NET tutorial csharp asp-net

  • EBCDIC to ASCII
    T Talktorajeev

    Hi folks! I am trying to convert EBCDIC file to ASCII file. the issues are 1) Can all EBCDIC file be converted to ASCII without loss of information.(There is one character cent sign which is not in ASCII, how to handle that?) 2)What about non printable characters in EBCDIC, do they all converted to ASCII format? Suggest some way. Thanks n Regards Ranjan

    C# tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups