15,665,353 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Python questions
View Javascript questions
View C++ questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Mathew Crothers (Top 10 by date)
Mathew Crothers
22-Oct-14 2:02am
View
Deleted
My first comment would be to point out that you have SQL injection vulnerabilities in this code. Make sure you use parameters in you SQL queries instead of putting the user submitted variables straight into the string.
Mathew Crothers
20-Dec-11 17:13pm
View
What is the data source you are using for the DataGridView. I'm assuming that there is a public property in the dataset that has the name ZSL_Action
Mathew Crothers
1-Jun-11 23:07pm
View
In QBasic opening a stream started with an OPEN command then finished with a FOR (type) and a file number.
So FOR RANDOM AS #1 means open the com port for RANDOM access and assign it the file handle #1
PRINT #1, "0000000000" just means write "0000000000" to the file handle #1.
Mathew Crothers
1-Jun-11 22:44pm
View
Do you mean that the socket on the service fails, or that clients connected to the service drop their connections?
Mathew Crothers
26-May-11 19:14pm
View
Yes it does. Have a look at the documentation here
http://msdn.microsoft.com/en-us/library/ms554855.aspx
Mathew Crothers
26-May-11 2:40am
View
I have just tested the code above and it works fine. Just copy and paste it into your class definition.
Mathew Crothers
26-May-11 2:27am
View
Are you talking about have an MDI parent form containing more than one child form?
Mathew Crothers
26-May-11 0:40am
View
You have actually put this code into the paint event of the form?
You can do this in the designer or in your constructor like this
this.Paint += new System.Windows.Forms.PaintEventHandler(this.form_Paint);
Mathew Crothers
26-May-11 0:18am
View
In what GDI+, directx, opengl, a DataGridView?
Mathew Crothers
26-May-11 0:18am
View
So you are selecting multiple lines in the DataGrid and want all the details from selected masters in the detail grid?
Show More