-
Created Error when trying to set a DateTime? value to null unless I use if/else?
I have a string representing a date time, and a datetime local variable property. The string representing the datetime could be null or an empty string. To check for this, … -
Began Watching Error when trying to set a DateTime? value to null unless I use if/else?
I have a string representing a date time, and a datetime local variable property. The string representing the datetime could be null or an empty string. To check for this, … -
Replied To a Post in Removing old, unused columns - Need suggestions on not breaking apps.
Good points rproffitt! The typical disaster plan here is unwritten and typically goes like this: "Oh crap! There's a problem! Quick! Restore a backup!" Amazingly it works more often than … -
Edited Removing old, unused columns - Need suggestions on not breaking apps.
I'm not sure if this is the right forum to ask this in, sorry if it isn't. It's been a while since I've been to this site. We have a … -
Created Removing old, unused columns - Need suggestions on not breaking apps.
I'm not sure if this is the right forum to ask this in, sorry if it isn't. It's been a while since I've been to this site. We have a … -
Began Watching Removing old, unused columns - Need suggestions on not breaking apps.
I'm not sure if this is the right forum to ask this in, sorry if it isn't. It's been a while since I've been to this site. We have a … -
Replied To a Post in Help with sum of Even or Odds Array
The % simply returns the remainder of the division of the first and second number. So if i = 25, then 25 % 2 would return 5, which doesn't meet … -
Began Watching Help with sum of Even or Odds Array
Need some help with this Array. I am trying to get the sum of the even numbers and the sum of the odd numbers using a for each loop. I … -
Marked Solved Status for Is it bad to include columns with date parts if there is a datetime column?
I am working on a table that will hold batch data. The table will have a BatchDate column as a DateTime type. I'm considering adding a column for BatchYear as … -
Replied To a Post in Is it bad to include columns with date parts if there is a datetime column?
Good idea! Thanks! -
Created Is it bad to include columns with date parts if there is a datetime column?
I am working on a table that will hold batch data. The table will have a BatchDate column as a DateTime type. I'm considering adding a column for BatchYear as … -
Began Watching Is it bad to include columns with date parts if there is a datetime column?
I am working on a table that will hold batch data. The table will have a BatchDate column as a DateTime type. I'm considering adding a column for BatchYear as … -
Replied To a Post in How do you get UserControl custom events to show up in Visual Studio's Prop
That stinks. I was hoping they would fix it. I'm assuming it isn't fixed in the latest version either? -
Began Watching How do you get UserControl custom events to show up in Visual Studio's Prop
I've asked this on SO *AND* Reddit without so much as a peep...was hoping DW would turn up the answer! I have an ascx user control that has a custom … -
Created How do you get UserControl custom events to show up in Visual Studio's Prop
I've asked this on SO *AND* Reddit without so much as a peep...was hoping DW would turn up the answer! I have an ascx user control that has a custom … -
Replied To a Post in Encrypting files using an existing encrypted password and password salt?
Sorry for the late reply! rproffitt, I don't see how it degrades the password. There are many zip cracking tools out there, true, but there are also many tools to … -
Replied To a Post in Encrypting files using an existing encrypted password and password salt?
I could, but I don't know what the passwords are. They are stored in a one way hash. -
Created Encrypting files using an existing encrypted password and password salt?
The Membership table for our ASP.NET site has the encrypted passwords and password salts stored when a user logs in. The site is already served over an HTTPS connection, but … -
Began Watching Encrypting files using an existing encrypted password and password salt?
The Membership table for our ASP.NET site has the encrypted passwords and password salts stored when a user logs in. The site is already served over an HTTPS connection, but … -
Replied To a Post in Handling Null DateTime values returned from MSSQL in ASP.NET
I kinda figured I wouldn't be able to do it easily. I think I'm just going to use a SP or view since I can check if a datetime field … -
Replied To a Post in Handling Null DateTime values returned from MSSQL in ASP.NET
rproffitt, I don't think that will work. I probably should have explained more about the report. Essentially the report contains a matrix of data, and two of those columns contain … -
Edited Handling Null DateTime values returned from MSSQL in ASP.NET
Hi everyone! I am in major need of some help here and before I go off and write a SP to handle this for me, I though I would ask … -
Created Handling Null DateTime values returned from MSSQL in ASP.NET
Hi everyone! I am in major need of some help here and before I go off and write a SP to handle this for me, I though I would ask … -
Began Watching Handling Null DateTime values returned from MSSQL in ASP.NET
Hi everyone! I am in major need of some help here and before I go off and write a SP to handle this for me, I though I would ask … -
Marked Solved Status for Should I add fields to an existing table or use a lookup table?
Hi everyone! So we have a web application that some of our clients use to manage their account. Part of that means they can manage activities that their registered employees … -
Gave Reputation to RudyM in Should I add fields to an existing table or use a lookup table?
I would create a new table with a foreign key to your main table's PK. This would help with keeping an easy normal form: https://en.wikipedia.org/wiki/Database_normalization . I hope this helps. -
Edited Should I add fields to an existing table or use a lookup table?
Hi everyone! So we have a web application that some of our clients use to manage their account. Part of that means they can manage activities that their registered employees … -
Created Should I add fields to an existing table or use a lookup table?
Hi everyone! So we have a web application that some of our clients use to manage their account. Part of that means they can manage activities that their registered employees … -
Began Watching Should I add fields to an existing table or use a lookup table?
Hi everyone! So we have a web application that some of our clients use to manage their account. Part of that means they can manage activities that their registered employees … -
Replied To a Post in A panel with a scroll bar that fades?
Thanks for the help! -
Marked Solved Status for A panel with a scroll bar that fades?
On our site we have a "News and Information" section at the top of our landing page. Right now it looks like this:  I'd like to change this … -
Replied To a Post in A panel with a scroll bar that fades?
gentlemedia, Thanks for the reply! I don't necessarily want the scrollbar control itself to "fade". The scrollbar can always be visible, I was talking more on the lines of having … -
Created A panel with a scroll bar that fades?
On our site we have a "News and Information" section at the top of our landing page. Right now it looks like this:  I'd like to change this … -
Began Watching A panel with a scroll bar that fades?
On our site we have a "News and Information" section at the top of our landing page. Right now it looks like this:  I'd like to change this … -
Marked Solved Status for Showing and Hiding an Alert Box
Good afternoon everyone! I'm running into a small snag and it could just be because it's late and I'm not thinking clearly. I have an ASP Panel that is an … -
Replied To a Post in Showing and Hiding an Alert Box
Nevermind! I simply disabled the viewstate mode for the panel and it works fine now :) -
Created Showing and Hiding an Alert Box
Good afternoon everyone! I'm running into a small snag and it could just be because it's late and I'm not thinking clearly. I have an ASP Panel that is an … -
Began Watching Showing and Hiding an Alert Box
Good afternoon everyone! I'm running into a small snag and it could just be because it's late and I'm not thinking clearly. I have an ASP Panel that is an … -
Replied To a Post in Can you change the parameter names of implemented abstract class methods?
I haven't tried it no. The MembershipProvider class has quite a few methods and I can't really test it. I guess actually I could try with just a generic class … -
Created Can you change the parameter names of implemented abstract class methods?
If I implement an abstract class that contains this method: private void MyMethod(string awesomeParameter, int aBigNumber) { // something cool happens here! throw new NotImplementedException(); } can I change it … -
Began Watching Can you change the parameter names of implemented abstract class methods?
If I implement an abstract class that contains this method: private void MyMethod(string awesomeParameter, int aBigNumber) { // something cool happens here! throw new NotImplementedException(); } can I change it … -
Marked Solved Status for Getting the Identity value from an inserted SQL Row
I am writing a custom MembershipProvider for ASP.NET and would like to record certain events in a table when they happen. I have the methods to do it, but I … -
Replied To a Post in Getting the Identity value from an inserted SQL Row
Sorry for taking so long to respond, I've been very busy! Thank you both so much for your help! You guys are the best! -
Created Getting the Identity value from an inserted SQL Row
I am writing a custom MembershipProvider for ASP.NET and would like to record certain events in a table when they happen. I have the methods to do it, but I … -
Began Watching Getting the Identity value from an inserted SQL Row
I am writing a custom MembershipProvider for ASP.NET and would like to record certain events in a table when they happen. I have the methods to do it, but I … -
Replied To a Post in Some general questions about using MVVM with WPF
ddanbe, I was only using validating user input as an example, but was more interested in the overall process of MVVM and how it is actually implemented. -
Marked Solved Status for Looking for some suggestions on using WinForms or WPF?
I am starting a new application for our business to help maintain our client information, so it is going to be a very data driven application. I'm curious, from the … -
Replied To a Post in Looking for some suggestions on using WinForms or WPF?
Thanks for the info guys! I think I'll try my hand at WPF. It's been a very agrivating day and I feel like I have accomplished...well...I made a blank VS … -
Gave Reputation to ddanbe in Looking for some suggestions on using WinForms or WPF?
Well, I programmed for a living in a time when C++, Java and C# weren't even invented. Now being retired I like to program with C# very much in a … -
Created Some general questions about using MVVM with WPF
Forgive me, but I've only really used WinForms in the past, and MVVM and WPF are new to me. For those who use MVVM with WPF, do you actually make …
The End.