On a IIS 5.0 webserver, does it require .asp.net framework installed to display .aspx pages?
I am currently implementing a .net WIndows Form Application which should display everything in UI in English. In my application, I choose to use .net's built-in MonthCalendar and DateTimePicke...
In a VB.NET winforms app, some users are sporadically getting "Out of memory" exceptions. Example Stack Trace is below... Is this likely to be .NET memory leaks which can be corrected throug...
I am getting a "System Standby Failed" error message when I try to put system
in standby mode.
The full length message is: The service 'Microsoft .NET
Framework v1.0.3705 Update' is prev...
In VS2005 winforms C# I have a combobox . In the selected indexchange event I want to save the old value and not to update to the new value.How do I do it?
The VBA script below reads raw data from a group of text files and writes the parsed data into Access. It works fine. I want to build a C# / ADO.NET Winforms app to replicate and extend this ...
hello,
The code at the very bottom below works as long as I leave off the ?info=dtlOfferPage info. When I leave that in I get this error message...I need to pass in that info= informatio...
Our production web server hosts several web sites that send mail all using the same code.. on some of these sites the mail is sent successfully however others give the following message:
Co...
Is there a .NEt function to convert a time entered by the user in the form:
"10:30 AM" from string to datetime?
Thanks
San
Does anybody know how to call a .bat file from within an MSI?
MSI need to do the following in this order:
1. Run unregister.bat
2. Copy files into the target directory (this I can do)
...
I'm using VS.NET 2005 integration with Visual Source Safe 8 on Vista. When I exclude from my project a folder that has many subfolders and files, VS.NET freezes up for over an hour. The firs...
When I try to publish my application developed in vb.net and crystal report.net on a citrix server, I get this error whenever I try to run a report. However, this application does run when pub...
select r1.TR_INT_TAGID,
r1.TR_INT_READERID
FROM TBL_READER as r1
INNER JOIN
(
Select TR_INT_TAGID,
max(TR_INT_TAGAGE)
from TBL_READER
GROUP BY TR_INT_TAGID
) as R2
ON R2.TR...
The ms data application block has an updatedataset method to update the main database with the changes made in the dataset. Does this one call take care of Insert, Delete, and Update commands ...
Like the tile says...
Explaining:
I have a form with multiple constructors, but the default constructor (the one with no arguments) is set to private.
Can I, using reflection, create an...
What is the best way (or is there a way at all) to get a database autoincrement column value during or after a BULK insert
and insert the value into the corresponding DataTable column using S...
I have a multithreaded VB.NET app, and this is my approach. I have used one connection object that multple threads can use.
then there is an openconnection and closeconnection method that...
Dear friends
I have some aspx files. I want to distribute that files as a compiled file. I dont want others to see my coding . is there any way to distribute compiled file. If so pl tell me...
I have code to run this in Visual Basic ADO using a Schema.ini file, but I am confused about how to do this in ADO.Net. What is the exact format of the connection string?
Since the file ...
What does the following mean?
The thread '<No Name>' (0x780) has exited with code 0 (0x0). It does not throw any exceptions (I have sufficient Catch blocks!!). So I am not sure whether this...
I am working on a scrollable panel control. It consists of an inherited panel, an "outer" panel panOuter, vertical & horizontal scrollbars, and an "inner" panel panInner. panOuter contains p...
I have a preferences form in my project where I can change the colour scheme of my application. When I press an apply button it should change the colour scheme of all the open forms. I don't ...
I will apologize right away for the length of this post, but I want to be comlpete.
I am using the 1.1 Framework and receive the following error when I try to use the ExceptionManager thr...
I basically want to limit the keys that are valid for entry into a asp:textbox
ie. I have a box for a currency value and would like to be able only accept number keystrokes for that field....
Hi..
I'm using the built in ASP.Net membership. My default page and login page are the same.
So when logged in I just show the main menu on my default page.
How do I set the IsAuthenticate...