- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
11 Posted Topics
Re: [code=cpp]float SquareRoot(float number) { long int inter_value = 0; float x_value = 0.0, y_value = 0.0; float f_value = 1.5F; x_value = number * 0.5F; y_value = number; inter_value = * ( long int * ) &y_value; inter_value = 0x5f3759df - ( inter_value >> 1 ); y_value = * ( … | |
Hi, I am having an small application which is running in a thread and it is waiting for an event initially. As soon as if i clicked the START button, event will be enabled. From then onwards my entire application is running in WHILE (TRUE) loop. That means that i … | |
Hi all, While integration i am facing an exception called "NotSupportedException". One thread i am computing the values and in another thread i am displaying the values in to the text boxes. As soon as i got the new value i am updating that value in to the text box. … | |
Hi, I have chosen the WINCE 6.0 internal database in order to store my data in the form of tables. Can any one provide me the code or link how to mount the database volumes, how to create the databases, how to open the database, how to create the table, … | |
Hi, I am developing a hand held device. I am using .net compact frame work with WINCE support. Here i want to choose a open source database which supports WINCE. Can any one tell which open source database will support WINCE platform. Regards, Vijay Bhaskar | |
Hi, I have created one table in MySQL database. I want to use that table in my C sharp application through ODBC. I have installed the ODBC driver also. I have created the project in visual C#, Smart device and WINCE 5.0. Now i want my application will interact with … | |
Re: Hi, This is vijay bhaskar. We have also faced the same problem, but the context what you are doing is bit different than what we are doing. I will explain my context. Even in my case also GPS is sending the continuously. The message format is same as what you … | |
Re: Hi, Try following code. class Program { static void Main(string[] args) { string temp = "abcdef"; char[] temp1 = new char[temp.Length]; temp1 = temp.ToCharArray(); for (int i = temp.Length-2;i<temp.Length;i++) { temp1[i] = Convert.ToChar((Convert.ToInt32(temp1[i]) + 2)); } temp = new string(temp1); } } Finally the string " temp " contains the … | |
Hi, I am working on route maps. I want some algorithms to find out shortest path between source and destination. And also i want to know how we can represent Nodes in the Maps. Can u please help me how to find out this. Regards, Vijay Bhaskar | |
Re: Hi, This is vijay bhaskar. I got the same problem when i am working with first time. But now i got the solution for this. What u have to do is...... Create the instance of the ASCIIEncoding object like this ASCIIEncoding objEncoder = new ASCIIEncoding(); And then you can call … | |
Hi friends, I have written following program in Csharp windows application. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; namespace Practice4 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void START_Click(object sender, EventArgs e) { Thread … |
The End.