Answer Questions
Gozzeh Sorting in C#2.0 - GridView sorting without a XXXDataSource
I have two classes OrderInfo and OrderManager and I would like to implement sorting in the GridView or in general without using an ObjectDataSource. I would like to have a method in the OrderManager called Sort or write a Sort class that has a variety of sort methods (Bubble Sort etc.) that I can call to sort the columns in the GridView. Or sort any data in my project for that matter. Is there a sleek way of doing this in C# 2.0 Using Gen ...Show All
TheresaKad Script to enable/disbale Certificates on IIS.
Hi Does anybody know the way to enable/disable the IIS for SSL using a script. I need to test webservices on both ssl enabled and disabled state on every build and doing it manually is very costly. Aqiqul Hello Aqiqul, This particular forum is for questions regarding Windows Desktop Search. You can find additional information about configuring IIS for SSL (and turning off SSL) on the Microsoft knowledge base: http://support. ...Show All
Florian Rakic my application talk to another app like Command prompt
Hy there, is there a way to talk to another application like Command prompt greetzzz, Tim You mean pass parameters as you do with the command prompt Yes, if the application supports it. If you mean while an app is running, yes, if the app supports it, or if you can figure it out by sending messages to the app window. I'm not sure how helpful that is, perhaps you need to be more specific You can pass parameters to Process. ...Show All
Paul Ch menu items calling forms
I've been trying to find information on how to call forms from menu items. The help system isn't helpfull. Can someone point me to some helpful information including sample code Thakyou, Here's the basics: Assume you have added a form to your project named "frmMenuItem" You can double-click on the menu item you want to call this form to create the event function. In the function you wo ...Show All
MaceM Editor
I had a *quick* look through the Tools > Choose Toolbox Items... menu but the list is far too big for me to check out every single item. My question is; is it possible to use the editing component from the IDE in our own applications I want to build a nice script editor for my application with code folding, syntax highlighting, intellisense, etc. The language as a whole might not be but this is really ...Show All
RejeanF How to get the display information from a website?
How to get the display information from a website For example, when i click a button, the system will get the fixed deposit rate from a certain bank website. How can i get the value that display on the website Can anyone help to solve my problem Hi Basicaly a well formatted HTML page is a Standered XML file. Try The to convert the Downloaded bytes into string you may convert through System.Text.Enco ...Show All
Indy James Will window service app get better performance
Hi, will C# Application that run as Window Services get more better performance than Console Application or Windows Application(without any form showing) thnx thank you me get an idea that about which type of application more suitable for me From what I know, the short answer is "no" the long answer "maybe under special circumstances". No, because if your program runs an ...Show All
Tahereh farrokhi logging in CSharp
hi, i am looking for a simple way of logging (event and errors) in my WebService application. can anyone please let me know best possible option for logging or where can i find a simple comparision of using different logging options. e.g., System.Diagnostics.EventLog, Log4Net Etc. will really appreciate. rnv You can use Microsoft EnterPrize Library(Pattern & Practices) for loggin errore and events ...Show All
M Eslinger Complex numbers class or struct in C#
Does anybody have a class or struct file for complex number arithmetic in C# If so, can I get it Otherwise, where can I get it from Many thanks... Thank you again, n0n4m3. Your answer is very helpful! Hi, if this was in C++ then it would be the same thing in what concerns to performance issues but in C# it can increase velocity if you use structs. This can happen becaus ...Show All
Jacek Jablonski app.TaskVisible = false
How is this done with my main form with C# app.TaskVisible = false The D wrote: If what you are trying to do is make your main form not show up in task bar... About half way into this article is some info: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dncscol/html/csharp06102002.asp --- Excerpt { --- That now means that I can make the main form disappear. The first two steps to do this are easy. You set the ...Show All
SaLLuComp Add "Help" button
How can I add "Help" button to my forms Like the picture: http://img.majidonline.com/thumb/39010/Untitled-3.gif Hi Thank for replying here is the Solution. Step 1 Maksim Libenson wrote: Hi, You should set MaximizeBox and MinimizeBox properties of your form to False, and then set HelpButton property True. Max Step 2 Add a new event Handler to FormName.Designer.cs for t ...Show All
Jaaaaa WDS / web search result integration?
Hello! Is there any way to integrate results from WDS searches with results from, say, MSN/Google web search providers in such a way that the "Windows Desktop Search Results" window as a single UI shows all the results together For example, the Google Desktop presents the user with an overview that shows the desktop result count above of the results from the ordinary web search (would maybe be nicer if it showed the exact desktop ...Show All
jm0rd3tsky User Security in Win Application
Friends, Need some feedback on how to implement some security in a windows app. My previous attempts at this have been web based so doing this in a Windows Form app is going to be completely new. In the past, what I have done is created a user class that is creeated by verifying a username./password at the start of the application against info stored in a database. Now with the win app, what I am thinking of doing is granting or denying permi ...Show All
Plepo Reusing an open FileStream with multiple BinaryWriter objects
Hi all, a quick question: Part of my application (Windows Forms / C# / .NET 2.0) deals with different objects which all have Serialize / Deserialize methods (custom ones, not implementations of ISerializable). At some point, I create a FileStream for writing, and then need to call those objects in turn, passing the FileStream object to the Serialze method. Each object should then append some binary data to that stream (and the reverse ...Show All
E Renken synchronous mode & asynchronous mode
Hi All!! Hi i dont really understand what si the diffrence betwenn a synchronous mode and asynchronous mode which is better to use why [MSDN] " In synchronous mode, calls to functions that perform network operations (such as Send and Receive) wait until the operation completes before returning control to the calling program. In asynchronous mode, these calls return immediately. " How does this return mod ...Show All
