| Thread | Last Post | Replies |
|
| Thread communication | 23 Nov 2004 14:04 GMT | 1 |
In my application, MainApp, I start a new thread which shows a form: Public Sub SplashThreadEntryPoint() Dim SplashScreen As New frmSplash SplashScreen.ShowDialog()
|
| Deployment Visual Studio 2003 | 23 Nov 2004 13:09 GMT | 1 |
I have built a deployment for my visual studio dotnet application. The deployment merely consists of a link to a executable which runs the program. I need to have adobe reader installed on all client pcs as well. how do i add this to the deployment so that it installs
|
| Launching An Application from C# Using a URL | 23 Nov 2004 12:23 GMT | 1 |
I want to launch an installation (setup.exe) from a Web Server using via a URL. I currently accomplish this by passing the URL to IE: System.Diagnostics.Process ieProcess = new System.Diagnostics.Process(); ieProcess.StartInfo.FileName = "iexplore.exe";
|
| Again! Help! I can't connect to Active Directory! | 23 Nov 2004 11:49 GMT | 2 |
I'm referring to the question of Amadelle (13 october 2004), please see http://groups.google.com/groups?q=Directorysearcher+async&hl=en&lr=&c2coff=1&sel m=10mrg65nb7gnb89%40corp.supernews.com&rnum=1 kindly answered by Jared, specifically to the words
|
| View State | 23 Nov 2004 10:59 GMT | 2 |
Im having one doubt in Viewstate. Actually Viewstate is used to maintain the state of the controls for postback of the page. If I Set the Page level EnableViewState=False and the Viewstate for the control (say Textbox) as False. Now Im posting form for process then again im ...
|
| On line books for newbie? | 23 Nov 2004 10:40 GMT | 1 |
Are there any online books on VB.NET for newbie? I heard that instead of dataset, datacommand objects can be used. If that is right where can I get information about them? Thanks.
|
| events related to datarow value changing | 23 Nov 2004 10:38 GMT | 1 |
are there any events which get fired when the value of a datarow (column) changes??? I'd like to fire some code of mine, when a particular column value of a particular row is changed.
|
| the simplest way to move data between listview | 23 Nov 2004 10:33 GMT | 1 |
there are two ListViews with the SAME coloumns within one winform,i want to move the data from one ListView into other one,what is the simplest method? thank you!!
|
| .NET Installation works fine...except when running Windows.NET applications...PLEASE HELP! | 23 Nov 2004 06:58 GMT | 1 |
I have a machine which is running Windows Server 2003, IIS and .NET V1.1. I have been using this machine very well for about 6 months now for running ASP.NET on IIS and the occasional .NET Console Application. Now I need to build a Windows Application and it does not
|
| MSDN home page in IDE????? | 23 Nov 2004 06:32 GMT | 1 |
Every now and then while I'm working in the dotnet IDE coding away, the MSDN home page and launched with the browser a tabbed windows within the IDE. How do I tell it to stop launching this as I'm not interested in reading their stupid web site???? I've gone through the
|
| url parameter | 23 Nov 2004 04:35 GMT | 1 |
how can i get the parameter "param" from the url http://localhost/myapp/webform1.aspx?param=p1 in the serverside c# code? thank you
|
| WebDAV download attachments | 23 Nov 2004 02:19 GMT | 4 |
I have two questions: 1) If there are more than one attachments, can I still use urn:schema:httpmail:attachmentfilename to get the file names? How? Or I need to use X-MS-ENUMATTS method?
|
| How to set .resx file as embedded resource via compiler command? | 23 Nov 2004 00:25 GMT | 1 |
I have a VS.Net project that has a resource file set as embedded resource. To compile the project via VS, I have no problem. But our build system uses compiler command, not VS.Net. How to set a resource file as embedded resource in the command line?
|
| Accessing Datagrid Cells in client-side script. | 22 Nov 2004 21:30 GMT | 1 |
Could anyone help me with the syntax (if there is any) for manipulating Datagrids in JavaScript. Basically I've built a datagrid with a textbox and an asp "lookup" button. The user needs to enter valid values in the textbox and the lookup up button
|
| Should it be a Windows Service? | 22 Nov 2004 20:58 GMT | 1 |
I have to run a scheduled task once a year. Should I build a Windows Service to do this? So basically the service would always be running and a timer would poll every minute to determine to execute the task? I'm looking for the best practices approach.
|