blah blah blah is here! blah blah » Close

0
votes
1 answers

Passing Values from one form to another

Hi good morning everyone , I just need a hand to help me on my little problems. I have 2 forms, What I just need is that the 2nd form will be my data entry form. Every data that I entry on my form 2nd form is that I need it to display on my ...

0
votes
1 answers

Problem verifying if an Excel worksheet's cell is locked or not

Hi I have a loop that verifies if 4000 Excel cells are each locked or not using the folowing method. But it takes much time!!! about 12 seconds!!! if ((rangeuse.Cells[j, i] as Excel.Range).Locked.ToString() == "False") { ...

0
votes
1 answers

Problem with accessing Excel sheet cells

Hi, Here's the situation: I try to access 4000 Excel worksheet cells that I need to modify using the folowing code but it takes more than 15 seconds: Excel.Range NewCell = (Excel.Range)newWorkSheet.Cells[row_index, column_index]; ...

0
votes
0 answers

How to access Excel cells values, formulas, Locked ... faster?

Vous ne pouvez pas voter pour votre propre billet. 0 Hi, Here's the situation: I try to modify my Excel file using values and formulas that I pick up from an XML file. So first I have to access cells that I need to modify with th ...

1
votes
3 answers

Convert Double Values to Char

I want to convert Double Values (including the decimal place) to Character and store them as bytes. I follow the simple instructions from http://social.msdn.microsoft.com/forums/en-US/vclanguage/thread/d606a107-d093-4f00-b585-cdf97f09 ...

1
votes
4 answers

Compare a string against several values

foamy
2499

Hi all, this has been bothering me for a while now so I decided to ask. Is it possible, in C# (.NET 3.5) to compare one string against several values? The below code doesn't compile, but can this be done? [code] string s = Consol ...

1
votes
2 answers

MySQL Server updates field values on its Client constantly.

I could do the implementation such that the client is being updated constantly from its Server, when it reads from the MySQL database and update on the client, by using the Timer. Upon each ticks, it would read from the server database and ...

0
votes
3 answers

Workaround values in dataset C#

Hi, i am trying to find a way for finding a value in a dataset, 3 values per row ex. 1234 Test 1432 the data that i have in this dataset is from a php that sends some xml after reading a database in this way: ...

1
votes
3 answers

Decimal place in textbox

Hi, I would like to display 4 decimal places in a textbox. Following is the code I have written: Y_Encoder_Pos.Text = System.Convert.ToString(Globals.motorPos); Y_Encoder_Pos.Text = String.Format("{0:0.0000}"); There is ...

Feedback