Hi
I program in Windows 7 and Visual Studio 2010 is written. The program runs correctly on Windows 7, but Windows XP can be difficult for some parts.
Example: This part of the code will not run on Windows XP. While one runs correctly on Windows 7.
lable_range.Text = number.ToString();
number is intiger.
Morteza NematiPosted Jul 7, 2016, 5:09 AM
ketan borsdiyaPosted Jul 7, 2016, 5:05 AM
Morteza NematiPosted Jul 7, 2016, 5:04 AM
Hi Vinay Singh
Do you have a reason for this?
Morteza NematiPosted Jul 7, 2016, 4:45 AM
ketan borsdiyaPosted Jul 7, 2016, 2:19 AM
Morteza NematiPosted Jul 7, 2016, 2:01 AM
Hi ketan borsdiya
This part of the application runs on Windows 7 without a problem but does not run in Windows XP without any message.
int32 number = 0;
AH = (byte)((read[2] & 0xF0) >> 4);
number = (AH * 10 + AL) * 1000;
AH = (byte)((read[3] & 0xF0) >> 4);
number = (AH * 10 + AL) * 10 + number;
AH = (byte)((read[4] & 0xF0) >> 4);
number = AH + number;
Vinay SinghPosted Jul 6, 2016, 6:25 AM
ketan borsdiyaPosted Jul 6, 2016, 6:17 AM