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.
Talktorajeev
Posts
-
FolderBrowserDialog -
Folks,FolderBrowserDialogHi
-
Draw lineHi, 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
-
OutlookYa, I am talking about a hyperlink inside a composed email in outlook
-
OutlookI 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??
-
Create custom link in outlookHi, 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
-
MnemonicThanks Man, It works...:) Regards, Rajeev
-
MnemonicHi, 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
-
Image DrawHi 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
-
Fax applicationThanks 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
-
Fax applicationHi 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
-
Windows Service Urgent!!!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); } }
-
Windows Service Urgent!!!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
-
Windows Service Urgent!!!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
-
Add Command bar in OutlookHi guys, I am trying to add my command bar in OutLook 2000 using dotnet. Do you have nay idea? Thanks
-
Windows ServiceHi 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
-
Modify app.configHi 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
-
Populate control on browser clientI 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
-
Multitab Web applicationHi folks, Can any one guide me how to build multitab web aaplication in asp.net. Urgent Thanks in advance Rajeev
-
EBCDIC to ASCIIHi 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