Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for Cory_Brown

I'm taking data from an xml file and when using the entity framework to add that data to my database I'm getting a System.Data.UpdateException. It is caused by a primary key violation, which for the data I'm entering is possible. I'm handling the exception and moving on but I would …

Member Avatar for lolafuertes
0
133
Member Avatar for Cory_Brown

I found this nifty piece of code online that lets me draw on a form. [CODE] protected override void OnMouseMove(MouseEventArgs e) { g = CreateGraphics(); g.SmoothingMode = SmoothingMode.AntiAlias; p = new Pen(Color.Black); if (lastPoint.Equals(Point.Empty)) lastPoint = new Point(e.X, e.Y); if (mouseDown) { Point pMousePos = new Point(e.X, e.Y); g.DrawLine(p, pMousePos, …

0
70
Member Avatar for Cory_Brown

Does anyone have a way to change the background color of every other row in a table with xsl-fo. I'm using nFOP to create pdf's and have accomplished most everything I've needed but would like to have say every other row have a light gray background. If I statically set …

Member Avatar for floatingDivs
0
1K
Member Avatar for Cory_Brown

We have an app that uses a sqlexpress db. We need our customers to be able to swap the database for this app out for another sqlexpress db fairly easily. So we came up with a small launcher app that allows them to choose the db they want from a …

Member Avatar for Oxiegen
0
639
Member Avatar for Cory_Brown

I once read an article that had 10 basic programs you should write anytime you are learning a new language. I had it saved somewhere but unfortunately I cannot find it. If anyone else has seen this article or one like it and can point me in the right direction …

Member Avatar for kvprajapati
0
62
Member Avatar for Cory_Brown

I'm stuck on checking a set of lists to see if they have values. I have 8 lists that are created in my program and I need to check if the lists have any values at all. If all 8 lists return values I want to return true. If any …

Member Avatar for Sodabread
0
103
Member Avatar for JamesGeddes

Hi Everyone, I'm making a windows mobile app in C# that aims to help those affected by Alzheimer's Disease Part of it needs to send text messages at 5 minute intervals, however, the rest of the C# program needs to continue at the same time. I know that when you …

Member Avatar for Cory_Brown
0
126
Member Avatar for ryang96

hi, so im a newbie at coding, im trying to learn some c# (i think i have it down somewhat) but i cant figure out why it's giving me this error..if someone could give me a hand that would be great :) The name 'Send' does not exist in the …

Member Avatar for Geekitygeek
0
964
Member Avatar for Cory_Brown

I finally figured out how to use the settings.settings file to create user settings that would persist when reopening my application. I have several text boxes that once completed by the user I would like to retain their data when the app is reopened. This part now works, unfortunately a …

Member Avatar for Cory_Brown
0
110
Member Avatar for Cory_Brown

OS: Winows XP Pro SP3 Software: Outlook 2007 / Outlook 2002 We are having a problem opening tasks in Outlook. We just started using Outlook as our task management software and not being able to open task requests is causing us lots of problems. We recently upgraded half of our …

0
76
Member Avatar for Cory_Brown

I'm a bit confused of the usage of the += operator. I understand that it is a compound operator that is used to both add and assign. However I've seen it used in the following manner. Class objectVar += new Class what is different about that vs Class objectVar = …

Member Avatar for privatevoid
0
130
Member Avatar for Cory_Brown

I need to populate an array with the items a user has selected in a listbox. Example: Listbox contains A, B, C, D, E User selects B, D, E create an array containing B, D, E What method would I use to do this? I've found plenty of info for …

Member Avatar for Cory_Brown
0
163
Member Avatar for Cory_Brown

Name: Cory Nickname: Keebler, or Keep, some call me Downtown Location: WV Age: 29 Hobbies: Playing music, Movies, Reading (anything I can get my hands on), Gaming of all kinds (console, pc, ccg's and tabletop rp), Watching MMA. Relationship Status: Married Fav Music: I like it all from Heavy Metal …

Member Avatar for edhardy
0
110
Member Avatar for Cory_Brown

Thank you in advance for any help here. This is my first post and I will try to phrase what I am thinking. I am trying to validate the entry of a field based on entry in a second field. If field "A" has value 1, 2, or 3 then …

Member Avatar for Cory_Brown
0
115