Thanks a lot to everybody!!!!
hellamasta
Posts
-
Very fast textbox needed -
Very fast textbox neededThank you Christian... I would say that i can't add a new line to the textbox each 300-400 microsecond... If I'm not wrong you're suggesting me to bufferize a number of messages then update text in textbox only after this number, is it? Sorry for my bad english :)
-
Very fast textbox neededHi everybody, I'm building a c# application that reads data messages from an external device at a rate of 1MBit/sec. I need to log in a window all messages. I tried to redirect console output to a textbox, but the textbox was not fast enough to update and a half of messages were lost. I have a thread that read continuously from the device and put messages on a buffer. A consumer thread read messages and pass them to the textbox. So...I need a very fast logging window and, if someone will give me some suggestion to speed up .Net controls it will be great for me.
-
Keypress handling in Simple DataGridThank you so much! Alessio
-
Keypress handling in Simple DataGridHi, I'd like to know if is possible to implement a KeyPress handling for a Simple Datagrid, without DataTables or DataColumns binded to it. How can I do? TNX
-
Binding Datagrid to a bidimensional arrayHi everybody!! Is it possible to bind a bidimensional array of double to a datagrid?if yes how can i do this? I can't manage this. Thank you so much Alessio
-
Converting a string to a doubleI found the problem, thanks for your help Alessio
-
Converting a string to a doubleok, but with the comma I had the same problem...now I try with the culture info thankyou
-
Converting a string to a doubleHi everybody!!! I have a TextBox in which user write a float number. Decimal separator is the dot ".". I have to save the Text of the textbox into a numeric variable... i chosen a double variable. But when I call Convert.ToDouble(myString) method and myString is, for example 1.5, the number written in the variable is 15. How can I solve this problem? thank you
-
Executable c# without frameworkI started programmin in november 2005. I've choosen .net platform, but someone asked me for an executable running without framework and I tried to get informations. Now I'm watching at C++...but your answer is offensive, not all people are expert like you!!! We are on a forum, so a minimal respect is necessary. Sorry for my bad english
-
Executable c# without frameworkHi everybody! Can anybody tell me if it is possible to build an executable, form a C# code made in Visual Studio .net 2003, that not requires framework installed? Thank you so much
-
Data Binding problem with ComboBoxHi everybody!!! I have a DataSet with only one DataTable in it. The DataTable has many DataColumn and one of those is binded to a ComboBox. Below the DataColumn...
DataColumn protocolloColumn = new DataColumn("protocollo");
protocolloColumn.DataType = System.Type.GetType("System.String");
carDataTable.Columns.Add(protocolloColumn);
...and the Bindingthis.protocolloComboBox.DataBindings.Add(new Binding("SelectedValue", carDataSet, "car_models.protocollo"));
The ComboBox is populated with some string. When I select a value from the combobox, this value is not stored in the dataset. Can anybody help me? -
Binding Dataset with textboxesHi everybody! I'm buliding a little Database where I have to insert Data through a mask made with some TextBox form and TextLable form. Can I bind a dataset to this kind of forms? How can I make possible to show in the boxes the selected row of the dataset? Do the Framework implements this functionality? Thank you!
-
Find text in a string....I'm a stupid!!! thanks!!!
-
Find text in a stringHi, I'm building a text file filter. I need to verify if a string is part of another string, for example: I wanto to find if the word "text" is part of a string. I'm writing a class inherited by String class...is it the correct choice or already exists a class to do this? Sorry for my bad english;P
-
Write an xml node in a specific position -
Write an xml node in a specific positionwell, now...i have the following structure of my xml file: - Now a I want to add dynamically new nodes under Variables, Parameters and BreakPoints, and for each subnode I have many properties to store, any suggestion?
-
Write an xml node in a specific positionThank you so much...in fact I was reading msdn documentation for xmlDataDocument...now I'll go trying...thanks agains
-
Write an xml node in a specific positionHi everybody, i'd like to know ('cause I'm on my first experience with c#) if it is possible with xmltextwriter, to write a new node in a specified position. Thank you
-
DataGrid row header textHi everybody!!! I need your help!!! Is it possible to write text on row header in a DataGrid without writing a new class? Thank you Alessio