16,016,712 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 C++ questions
View Javascript questions
View Visual Basic questions
View .NET 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 vebi1000 (Top 30 by date)
vebi1000
28-Feb-19 8:19am
View
@Rob Philpott When the data received i need to set which system is connected, for setting that i have radio buttons for two systems A and B. Depends on the data i have to set one of them. those radio buttons are in main from. I have another class serial communication. How to call those radio button chechkChanged evnts from SerialPort calss??
vebi1000
9-Dec-15 13:44pm
View
Hi rushi,
I am closing the file as well. but still same error.
Thanks.
vebi1000
9-Dec-15 13:43pm
View
var Samples = (from s in xmlDocument.Descendants("Transfers")
select new Sample
I am getting error here in reading sample data.
vebi1000
16-Nov-15 10:54am
View
Hi Wessel,
Thanks for you reply,
I need to update table every 5 secs, i have to present data at this interval.
working with multple pages seems nice idea for me. Can you provide some example on how to create multiple pages each time when i hit 1000 records?
Regards,
vebi.
vebi1000
16-Nov-15 5:40am
View
Yes exactly if i change it to 15 sec then it crash after 10 hours. If i extend it to 1 mint then it will work for almost two days. Do you mean i need another thread to update drawing?
vebi1000
26-Aug-13 7:50am
View
Thanks for your advice, Yes i am doing BeginInvoke methods in the timer, I should avoid now and i am trying to update grid as well as TeeChart with the timers. I will try to post my code as well.
vebi1000
31-Jul-13 5:23am
View
Two sensors(sensor1, sensor2) using timer and one sensor(sensor) is updating its own. because sensor1 and sensor2 will get response from hardware every 5 and 10 sec respectively so if i want to update every sec then i need to use timer.
vebi1000
23-Jul-13 10:27am
View
Its working but is it the standard way! so that i can use like this whenever i need.
vebi1000
26-Apr-13 3:34am
View
The problem is system regional settings...i need to put "," instead of ".".Really i don't know this is the problem so i have asked question. Thanks for your suggestion.
vebi1000
26-Apr-13 3:34am
View
Yes you are right, i have tried as you said it is working. thanks alot,i don't know this will be a problem.
vebi1000
17-Apr-13 7:42am
View
Yes you are right, now i have solved it........i am very sorry for not providing the required information here.
vebi1000
15-Apr-13 9:36am
View
always if condition is failing so the code is not going inside if condition itself. While debugging i found that all points what ever i enter is storing in "Calibpoints". I am wondering at least how to print or show the elements in "Calibpoints" after that i can handle.
vebi1000
15-Apr-13 9:25am
View
I have updated my question little bit more clearly....
vebi1000
15-Apr-13 9:18am
View
Hi,
I am sorry for not posting required information. In one of the class i have like this
private DataSetAnalog[] _sensorData;
public DataSetAnalog[] SensorData { get { return _sensorData; } private set { _sensorData = value; } }
and as well i am assigning values to "Calibpoints" like this
CalibPoints = _analogCalib.SensorData;
vebi1000
12-Mar-13 10:37am
View
Hi, Thanks for your clarification, I need a separate form with two buttons, textbox and label then i need to use "MyForm.ShowDialog()" to display that form and i need one property that will read textbox and update it in the old one.
vebi1000
12-Mar-13 10:31am
View
I don't want to show textbox.Text in MessageBox.Show method, I am trying to create a textBox in MessageBox.Show() method, the textBox in MessageBox.Show should contain the same content of one of the textbox in user control and if i change in MessageBox method it has to change there. Is it possible?
vebi1000
12-Mar-13 10:24am
View
I don't want to show textbox.Text in MessageBox.Show method, I am trying to create a textBox in MessageBox.Show() method, the textBox in MessageBox.Show should contain the same content of one of the textbox in user control and if i change in MessageBox method it has to change there.
vebi1000
7-Mar-13 7:45am
View
Thank you very much, Sorry I am confused little bit. It is working perfectly what i want. I have confused myself and posted comment. sorry for that.
vebi1000
7-Mar-13 7:37am
View
Deleted
I am clipping some part of chart so the message box will ask chart maximum scale is going to assign adjust transfer volume. If i click "YES" then it has to done the task(i mean assigning the chart max scale to adjust transfer volume. if i click "no" then no operation should be done. Just dispose that operation. can you help me what i have to do now. Now it is going to do same task when i click "YES" or "No". how to change it? any suggestion.
vebi1000
6-Mar-13 3:24am
View
Deleted
Hi i have small problem from the above code. Its working good but problem is when i click YES or NO in the message box then the same operation is performing. How can i do like when i click "NO" in message box then no operation. only when i click "YES" in the message box then it has to assign the value.
vebi1000
22-Feb-13 9:34am
View
Thanks alot. its working perfect.
vebi1000
21-Feb-13 7:29am
View
Thank you very much for your clear explanation , now i understand clearly.
vebi1000
21-Feb-13 6:44am
View
I have tried to understand your concept and even i have downloaded your code. exactly that is what i want but here i am confusing little bit about parent and child. I have understand the property and event handler in child.cs but i am confusing on child 1 and child 2. I am basic C# learner. Can you describe little bit more on
"child1.DataAvailable += new EventHandler(child_DataAvailable);" this line and "child_DataAvailable" that function.
vebi1000
18-Feb-13 10:01am
View
Deleted
Thanks for your reply, i think it will show in the message box but i want to create pop up menu when i use mouse right click. Any way i have achieved it by using above lines.
vebi1000
18-Feb-13 9:42am
View
Thank you very much.
vebi1000
18-Feb-13 8:54am
View
vb.net and vb6 both are same, because in above link only vb.net to c# option available. I don't know it is not converting the above code that i have posted.
vebi1000
18-Feb-13 8:53am
View
Can i convert VB6 to c# using above link you have provided. I have n't seen any option that will convert vb6 to c# in the above link.
vebi1000
15-Feb-13 5:23am
View
Can you help me with simple example code snippets that how to call a method from user control to mainform. I have created a method in user control but i am confusing to call this method.
public void SaveImage()
{
picBottle.Image.Save(@"C:\Users\Veera\Desktop", System.Drawing.Imaging.ImageFormat.Bmp);
txtTransferStartTime.Text = DateTime.Now.ToString();
}
vebi1000
15-Feb-13 4:17am
View
One more thing is at the same time when i click that "save" button in main from then current time has to display in one of the textbox in the usercontrol.
vebi1000
15-Feb-13 4:14am
View
Yes its ok but how to save picturebox image which exist in usercontrol and i am trying to save this image from mainform.
Show More