all groups > dotnet general > june 2006 > threads for monday june 5
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
ANSI c++ development in .net
Posted by Nishanth at 6/5/2006 11:13:49 PM
My understanding is that ANSI c++ is a standard for c++, to which all
the compilers should adhere to. and the c++ code developed by following
these standards should be compatible with different c++ compilers for
different platforms.
My question is
- If we develop the c++ code in .net and ... more >>
parsing VB code with a regex
Posted by Mark at 6/5/2006 10:14:41 PM
I must create a routine that finds tokens in small, arbitrary VB code
snippets. For example, it might have to find all occurrences of
{Formula}
I was thinking that using regular expressions might be a neat way to solve
this, but I am new to them. Can anyone give me a hint here?
The... more >>
How to change data in grid after you change the SQL select for the data adapter
Posted by tomcarr1 NO[at]SPAM gmail.com at 6/5/2006 7:11:14 PM
I have an ASP.net webform with a datagrid on it.
I can change the SQL select statement for the grid in code by putting
a statement like this in the first line of Page_Load
OleDbDataAdapter1.SelectCommand.CommandText = "SELECT * from table
where ... "
The rest of the code in Sub Page_Load is... more >>
Standard/Best Practice
Posted by cbrown NO[at]SPAM duclaw.com at 6/5/2006 5:53:06 PM
I am rebuilding an existing application that relies on an SQL DB. The
app is a scheduling/employee management program. My question pertains
to best practices in dotnet and database.
I use a 3 tier model and have custom classes for things like Employees.
What comes to question is when I load... more >>
How to obtain an hotfix ??
Posted by Bragadiru at 6/5/2006 4:24:13 PM
Hi all,
I want to get the hotfix from
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q918146, but I don't
know how do it quickly.
I'm not from US and http://support.microsoft.com/contactus/?ws=support is
not helpfull.
Pls provide me an url or email to request this fix.
I have ... more >>
Problem with Dictionary<T,U>.Keys enumerator returning invalid keys
Posted by Brian Richards at 6/5/2006 3:19:40 PM
I'm experiencing some wierd behavior with a Dictionary<T,U> class using
foreach loops, such that the Key returned in the foreach is not contained in
the dictionary.
code:
Dictionary<A, B> dict;
.....
foreach(A key in dict.Keys)
{
bool foo = dict.ContainsKey(A); //returning false
}
... more >>
Goofy Bullsh!t 2.0 Membership Date Values
Posted by clintonG at 6/5/2006 1:50:00 PM
What's with this software? Every day its a new surprise with some goofy
bullsh!t.
I finally make time to try to finish building out Membership logging and
reporting and today its user data in the SQL Server 2005 aspnet_Membership
table such as LastLockoutDate and FailedPassword with dates for... more >>
checkboxes and checkboxelist
Posted by SalamElias at 6/5/2006 11:25:02 AM
When I add checkboxes dynamically, I can set several attributes(id,
eventhandlers specific to checkboxes....) in code.
I decided to use the checkboxlist to generate several checkboxes dynamically
instead of looping and writing a lot of code
1st question :How can I give each checkbox an ident... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Build after Clean is VERY VERY slow
Posted by Rob R. Ainscough at 6/5/2006 11:20:15 AM
I have a moderately sized web application (30 pages, and 20 DLLs) that takes
10-20 minutes to "Build Solution" after I do a "Clean Solution" -- this is
ONLY apparent after a "Clean Solution"
I have a reasonably power workstation (3.06Ghz dual Zeon with 4GB RAM and
10K RPM hard drives) -- th... more >>
restarting .net service
Posted by Peter Schmitz at 6/5/2006 10:30:01 AM
Hi,
I'm currently writing a VB .net windows service. How can I restart myself
(this service) out of my own code?
Thanks,
Peter... more >>
upgrade to .net 2.0 framework
Posted by Mike at 6/5/2006 10:03:02 AM
I have a MS 2003 server currently running .net 1.1 and was considering
installing .net 2.0 onto the server without uninstalling 1.1, so that I can
run them side by side. I guess this is still feasable. Anyway, I'm wondering
if by installing .net 2.0 if it will break any of my .net 1.1 web
ap... more >>
exchange information between two .net applciations running under windows
Posted by KemperR NO[at]SPAM eu.necel.com at 6/5/2006 9:54:42 AM
Dear All,
I need some very basic help on the following situation:
I have two applications (we may assume bot are .net based) which must
exchange information very quickly.
In an ideal case I imagine one application fires an event and the other
one may handle it.
The same might happen in the... more >>
saving changes in web.config
Posted by Tyler at 6/5/2006 9:11:02 AM
I am making a change programatically to web.config. That code works fine.
However when I try to save web.config i get the "Access to the path
"c:\inetpub\wwwroot\xxx\web.config" is denied. I have given permission to
the IUSR_MACHINENAME and the ASPNET acccount. I am not using impersonation... more >>
Visual Studio IDE
Posted by Ben Kim at 6/5/2006 8:19:49 AM
Hello all,
I have VS 2005 and SQL 2005 installed on my machine. However the "Getting
Started" area of the Start Page shows SQL information instead of Visual
Studio information when I start up Visual Studio 2005. Is there any way to
reset the link to VS related info? I have tried reinstal... more >>
calling .exe from asp.net c#
Posted by vishwanath.yr NO[at]SPAM gmail.com at 6/5/2006 2:14:29 AM
Hi all,
I'm using visual web developer to develop my asp.net applications. The
requirement is to call an executable file from one of the aspx pages on
the click event of a button.
The good news is that I've achieved it using the process class
function and it runs fine when I start debugging f... more >>
|