| Thread | Last Post | Replies |
|
| Good book about VB.NET ? | 15 Apr 2005 20:30 GMT | 7 |
I have experience in VB6 . Recently , I started learning (independently) VB.NET , under the Beta 1 version of VS2005 . However , there are not many books about VB2005 : VB2005 isn't completed yet .
|
| Global objects | 15 Apr 2005 20:01 GMT | 2 |
I am developing an ASP.NET application. I have several classes that I developed that store user information and certain things that they do while working with the application. All those classes need to be available from the time user signs in to the
|
| Is this correct OO design? | 15 Apr 2005 17:13 GMT | 4 |
I'm not sure if this is bad design or not. It seems flawed, but I'm not sure. Is it wrong to create an instance of a class within the class itself? Any feedback appreciated. public class Article
|
| where to save app settings? | 15 Apr 2005 16:50 GMT | 5 |
It is my understanding that in .Net the registry is not the prefered place to save application settings. What has Microsoft put in place to replace it? I thought it was the .config file, but I am unable to figure out how to write to the file.
|
| Run .NET application without install the framework | 15 Apr 2005 16:00 GMT | 1 |
Hi to all. I would like to run .NET application without install the framework on my computer. This is a requirement for my application because it will downloaded from the internet.
|
| XSLT for WinForms? | 15 Apr 2005 15:40 GMT | 7 |
I was just curious to see if there was some analog to XSLT in WinForms. I'd like to be able to have my data be defined in XML, then process it with some kind of style sheet/transformation to dyamically "render" forms and their constituent controls on-the-fly.
|
| help about the BeforeNavigation2 | 15 Apr 2005 13:29 GMT | 2 |
I tried to use this BeforeNavigation2 event and apparently it fires neither in my VB application nor in my C #code! I tried the resolution claimed by Microsoft at: http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q311298&ID=KB;EN-US
|
| Can it be done | 15 Apr 2005 09:30 GMT | 1 |
Is there anyway to create some code that will go through every form and control in my solution and update the lanuage property? I was trying to create an addin to do this but I can't figure out how to loop through the forms.
|
| Strange Build Error | 15 Apr 2005 09:23 GMT | 1 |
I have a solution with 11 projects in it. When I build it, I get a message that says: 10 Successful, 1 failed, 0 skipped but I cannot see which project failed! There are no messages in the
|
| A way to extend the Enterprise Library to work with other DB providers | 15 Apr 2005 08:38 GMT | 1 |
I'm trying to extend the Microsoft Enterprise Library Data Access Application Block (http://msdn.microsoft.com/library/en-us/dnpag2/html/daab.asp?frame=true) to work with a Borland Interbase database.
|
| web service connect problem | 15 Apr 2005 05:21 GMT | 3 |
I build a web service in a server(A) and can connect to it successfully in my local computer(B) by using SoapHttpClientProtocol as client. However, when I move the same code(local computer (B)) to another computer (C). It (C) can view the web service through browser but not ...
|
| use .NET to shutdown another app | 15 Apr 2005 04:31 GMT | 5 |
I need to create a utility to shutdown another running application. I know you can get a Process object and execute the Exit method but that only works for apps that have a main window, mine does not. So is there a way to shutdown a running app (with no main window) from ...
|
| Professional Icon Package | 14 Apr 2005 20:55 GMT | 2 |
I am in search of a commercial quality professional icon package. I have searched on Yahoo and seen 2 of the sites recommended on this forum, but I am not looking for the new colorful, soft, graphic icons that we see today. Just the bussiness-looking, simple ones, like those ...
|
| Assembly Manifest Files | 14 Apr 2005 20:36 GMT | 2 |
Can anybody point me to some documentation about assembly manifest files. I've seen them used is WinForms applications to enable visual styles. I'm more interested in what happens behind the scenes when you declare a manifest file.
|
| ExecuteScalar() not returning single field value | 14 Apr 2005 20:09 GMT | 3 |
Why am I not able to retrieve the value of ID (which does exist) using ExecuteScalar()? Do i simply have to use ExecuteReader() instead? My problem snippet: string mySQL = "SELECT ID FROM Table WHERE TableID = 1";
|