| Thread | Last Post | Replies |
|
| Bizarre ObjectDisposedException - Please help | 18 Oct 2004 03:22 GMT | 4 |
Any help you can offer on this would be most welcome. Its making me pull out what little hair I have left! A strange exception is raised occasionally by the following code: byte[] buffer = new ASCIIEncoding().GetBytes(toSend);
|
| Deploying a windows forms application from IE | 18 Oct 2004 02:50 GMT | 1 |
I wrote a simple test windows forms app with one cs file, uploaded the exe on the net and was able to execute it. The app included buttons and textboxes. Now I am trying to do the same thing with another
|
| Reading XML with VB.NET | 18 Oct 2004 00:31 GMT | 4 |
I have an XML file that I wish to load and use with VB.NET. It is in the structure: <?xml version="1.0" encoding="UTF-16"?> <sql xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">
|
| InputBox dialog | 17 Oct 2004 19:33 GMT | 5 |
In Borland's VCL there was an InputBox dialog, and also a slight variant called an InputQuery dialog, which asked the user to input information. I do not see an equivalent for this in the .NET framework. Does one exist in the .NET framework ?
|
| How do I handle the kill signal? | 17 Oct 2004 19:26 GMT | 4 |
I would like to know if there is a way in the .NET to handle the kill signal if sent to my process. I want my application to close properly even if the user is using the task manager to kill the process.
|
| Question about my start page in VB.net, framework? | 17 Oct 2004 17:53 GMT | 2 |
Excuse me if this is not the ploace for this question. Whemn I start my VB.net program, the IDE start page lists my most recent projects. There is a modified column that I would expect to change when I updated or changed the project. Mine does not change. Any help as to why
|
| Walkthroughs | 17 Oct 2004 15:42 GMT | 7 |
I have installed Visual Studio.NET 2003 Academic. It came with a book called “Visual Studio.NET Walkthroughs.” I tried to use these walkthroughs to learn how to use this stuff, but I cannot make a connection to the Pubs database. After several days of reading newsgroup posts, ...
|
| how can a thread wait on 2 events? | 17 Oct 2004 13:42 GMT | 1 |
in win32, we could call WaitForMultipleObjects(); is there a parallel method in .NET? assaf
|
| iso-8859-1 in webservice-responses | 17 Oct 2004 11:59 GMT | 1 |
I have a webservice in c#.net. I want to send all the responses of the webservice encoded in "iso-8859-1", so that german special characters will be displayed correctly. I put this line in both files, machine.config and web.config: <globalization requestEncoding="iso-8859-1" ...
|
| XML: Why can't I create a parent node for my document? | 17 Oct 2004 08:25 GMT | 3 |
I'm trying to write an XML file. The first thing I want to do is create the parent node for the document: eleMenuItems = xmldoc.CreateElement("menuItems") xmldoc.DocumentElement.PrependChild(eleMenuItems)
|
| MenuItem popup event | 17 Oct 2004 08:15 GMT | 1 |
I have a context menu which is being built dynamically. The menu has regular items and group items which contain sub menu items. I didn't want to create the menu all at once, so I decided I will
|
| getting computer name from asp-dot-net | 17 Oct 2004 08:12 GMT | 5 |
i need to get the computer name from an aspx page. i use System.Windows.Forms.SystemInformation.ComputerName() and it's working fine, but in second thought, it might not be recomended to use the
|
| How to debug a file not being written? (XML) | 16 Oct 2004 23:32 GMT | 3 |
I'm creating a recursive function that goes into a database and pulls everything out as an XML file. I then want to save thisXML file on the server. I have this:
|
| Keept NATIVE code on HDD | 16 Oct 2004 22:05 GMT | 3 |
When JIT compiles MSIL code to NATIVE code, this NATIVE code is not kept on the hard disk? To use it at the restart of application? If it so, why Microsoft will not make it, for increase of productivity? P.S. Sorry of my english
|
| Error invoking webservice from .net client | 16 Oct 2004 15:26 GMT | 2 |
We have a gSOAP based server running on linux that I am trying to utilize from a .net based client application (C#). Everything seems to work fine when we are invoking methods with simple parameter types. Problems seem to arise when I try to invoke a method that contains a ...
|