Click here to Skip to main content
15,888,579 members

Tim Abell - Professional Profile



Summary

    Blog RSS
12
Debator
1
Enquirer
6
Organiser
132
Participant
0
Author
0
Authority
0
Editor
This member doesn't quite have enough reputation to be able to display their biography and homepage.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralImplementing IDisposeable in C# Pin
Tim Abell11-Jan-06 5:53
Tim Abell11-Jan-06 5:53 
GeneralChanging the title of MasterPage from the code of a templated page. Pin
Tim Abell11-Jan-06 3:36
Tim Abell11-Jan-06 3:36 
GeneralHandling "A potentially dangerous Request.Form value was detected" Pin
Tim Abell9-Nov-05 5:07
Tim Abell9-Nov-05 5:07 
Generalvisual studio dataset xml / insert with autoincrement Pin
Tim Abell10-Aug-05 6:03
Tim Abell10-Aug-05 6:03 
Here's something that flummoxed me for a while.

I'd created a dataset (with xml schema) using the visual studio 2002 designer and a dataadapter by hand. My main table was a normal table with an auto increment non-nullable int for a primary key. I created a record and poulated the values. When I tried to add the record to the dataset's datatable I received a message informing me I couldn't as the primary key was null.

Much scratching of head and googling later I found I needed to change the field definition of the primary key field from
<xs:element name="Record_ID" type="xs:int" minOccurs="0" />
to
<xs:element name="Record_ID" type="xs:int" minOccurs="0" msdata:ReadOnly="true" msdata:AutoIncrement="true" />


It occurs to me that last time I did something similar I'd pointed visual studio at sql server and told it to build the xml for me. This time I couldn't because visual studio can't (afaik) look into mysql.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.