Time for bed, perhaps?
J 0
Posts
-
You know you've hit rock bottom when... -
Help Update In ProgressSounds pretty useful. Care to share where I can find it?
-
What is the word or wordsLink farm?
-
If you want to hack an iPad...Goatse Security group? Man that's scary... I'm curious if that place is legit, however not curious enough to actually do the research. What has been seen cannot be unseen, and I prefer not to re-see either.
-
issue with boolean datatypebigphish wrote:
how to check for null or false
To check for null...
if (dataRow.IsNull("ColumnName"))...
To check for false...
if (!Convert.ToBoolean(dataRow["ColumnName"]))...
-
I'm still learning , but i havn't figured out anything yet ,but i am tryingIs that you satips? :rose:
-
ASP.Net and php hostingI believe WebHost4Life[^] provides what you need.
-
SCOTD [modified]My boss is the new village idiot
-
Gmail AwesomenessI saw something a few weeks back on either Digg or Slashdot that mentioned that it has been promoted to being a standard feature.
-
Funny how no one tells youNo, because the "promotion" I was given was only an increase in responsibility. Why should I get more money for doing more for the company?!? That's absurd!
-
Funny how no one tells youHow about being demoted without being told because my manager "didn't want me to be mad"? That was a few months ago, and I still have several non kid sister safe comments to make about that whole situation.
-
chat software recommendationsYeah, I had to do the same thing w/an Ask.com toolbar.
-
chat software recommendationsI used to be a big fan of Pidgin, until I found Digsby. IMO Digsby is a more stable, more functional version of Pidgin (in that it supports multiple chat clients). Give it a look, its def worth using.
-
Visual Basic 6.5 context sensitive/auto-complete wackynessjohn john mackey wrote:
'WTF - it breaks EndIF into two words End and If and i can't even save it as 1 word
That's because in VB syntax the end of an if block is End If not EndIf.
-
Visual Basic 6.5 context sensitive/auto-complete wackynessI believe the word you're looking for is "Intellisense"
-
Visual Basic 6.5 context sensitive/auto-complete wackynessI experienced this issue a while ago when the form was in Form View not Design View. Doing the coding while in Design View seemed to solve the problem for me.
-
deploying asp.netTry opening IIS. Expand the Treeview that contains all sites/sub directories etc. Look for the virtual directory called "myapp" (or whatever you've named your site). Right click ->Properties. Under the Directory tab, click the button that says "Create" (which is inside the Application Settings group) then click OK. Hope that helps...
-
DateTimePickerWhy not create your own user control with 2 comboboxes on it? The first combobox will have the months, the 2nd will have the year values.
-
Programmers' Educational Background SurveyFriend or relative [ ] College Recruiter [x] Checked it out on my own [ ] Other (please specify)_______________________________________ How long have you been a programmer? Check One: [ ] 0 to 6 months [ ] 6 months to 1 year [ ] 1 to 2 years [ ] 2 to 5 years [x] 5 to 10 years [ ] 10+ years What is your highest level of education attained? Check one: [ ] High School [ ] Technical College [ ] Associates Degree [x] Bachelors Degree [ ] Masters Degree [ ] Other (please specify)______________________________________________ Do you have a college degree? Check One: [x] Yes, I have a college degree in programming [ ] Yes, I have a college degree in (other, please specify)________________________ [ ] No, I do not have a college degree Did you become a programmer before or after attending college? (If applicable) Check One: [ ] Before [x] After [ ] Not Applicable If you became a programmer before attending college, how much practical knowledge did you gain from your schooling? Check One: [ ] A great deal [ ] Some practical knowledge [ ] No practical knowledge gained [ ] Not applicable: I have not attended college Would you recommend college to someone interested in becoming a programmer? Check One: [x] Yes [ ] No [ ] Maybe What is your current employment status? Check one: [x] I am employed. [ ] I am unemployed and am searching. [ ] I am not looking for a job. [ ] Other (please specify) _______________________________ -
Inconsistent accessibility: property type is less accessible than propertyIs the enum declared w/in the declaration for the static class? If so moving the enum declaration outside of the class declaration will probably fix your problem.