Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Plato2

    New row in DataGridView move to the top..?

    I have a DataGridView control and I have a new row entry at the bottom of the DataGridView...How can I move new entry row to the top of the grid? Thanks in advance
  2. Plato2

    Datagridview control making cell editable on a double click...

    I have a datagridview in ReadOnly mode.I want to add functionality on double click to make cell editable and instead of text box I want cell to display a DropDown with options...How can I do that? Thanks in advance...
  3. Plato2

    How to add a user control to DataGridView cell

    I have a DataGridView and I want to add a user control or some other control to a DataGridView cell. Is it possible to do? If yes how... Thanks in advance
  4. Plato2

    Form1_Load getting fired after DataGridView1_RowsAdded

    My vb.net form has DataGridView component and my component has event DataGridView1_RowsAdded. But when my form gets loaded the event DataGridView1_RowsAdded gets fired first and then Form1_Load event... Does any body know why is this?How can I change it? Thanks in advance
  5. Plato2

    DataGridView control from VS2005 - changing rowheader caption

    I have a DataGridView from VS 2005 - I want to change the caption for rowheader cell and display numbers like 1,2,3 and etc... Is it possible to do, Thanks in advance
  6. Plato2

    Is there is a way to make Excell file writable for 2-3 different users

    Yes I understand that we can do database application but I need to do it in Excel...is there is a way? thanks
  7. Plato2

    Is there is a way to make Excell file writable for 2-3 different users

    Yes, I tried this and it works fine. But I also need and extra step for my project. When 2 different users update the information at the same time(when excel is sharable) the user 1 typed something but the user 2 doesn't see what user 1 typed unless they both clicked save button in excel.So if...
  8. Plato2

    Is there is a way to make Excell file writable for 2-3 different users

    I am trying to put an excell to a server so that 2-3 different users can open it and start writing some information to this excell file(but 2-3 user can open this excell file at the same time - syncroniosly )... Thanks in advance
  9. Plato2

    How to disable autolinking crystal reports 10

    I need to disable autolinking for crystal reports 10. When I add a new table to my Crystal Report- it automatically tries to link all the tables. How can I disable autolinking? Thanks in advance
  10. Plato2

    How to change width of a tree?

    I use ASP to open crystal reports...How can I cahnge the width of tree? Thanks in advance
  11. Plato2

    How to store a text field of a table into a variable?

    Ok In my case I need to get this variable(text) from the table and then I need to pass this variable to a stored proc. ------- Here is my table create (id int identity,message text). I need to get "message" variable from this table and pass to a stored proc. Here is stored proc...
  12. Plato2

    How to store a text field of a table into a variable?

    NO I cannot do that I have table create (id int identity,message text) I cannot assign text value to a varchar....
  13. Plato2

    How to store a text field of a table into a variable?

    I have a table with a column diclared as a text. Is it possible to save a field value of this text column into a variable? Thanks in advance
  14. Plato2

    How to increase value of a "TEXT" variable in a table

    For example I try to use an update statement to change the value of a column that is declared as TEXT CREATE TABLE SomeTable ( TextColumn Text ) update SomeTable set TextColumn=TextColumn+' Append Some String' doesn't work saying that I cannot use TEXT columns to appent - inavlid +...
  15. Plato2

    How to increase value of a "TEXT" variable in a table

    I have a table with a field that is declared as a TEXT variable. But I cannot update the value of that variable - I need to append additional varchar value to this text field but I cannot do that. Is there is a way to solve the problem? Thanks in advance
  16. Plato2

    A problem with text boxes to read multi language information

    I have an Input form that sends emails in other languages than english. But when I receive an email the information is not readable... How can I fix this problem?
  17. Plato2

    Is there is a way to call a JavaScript function from a server side?

    Is there is a way to call a JavaScript function from a server side? Thanks in advance
  18. Plato2

    Is there is a way to submit a form on the server side

    I tried Server.Transfer("www.mypage.com") but it gives error:An unhandled exception of type 'System.StackOverflowException' occurred in httpretrivalpage.dll Because I'm submiting to the same page. Any ideas? Is there is a way to call client side Javascript from ASP.NET? Thanks in advance
  19. Plato2

    Is there is a way to submit a form on the server side

    Is there is a way to do in ASP.NET(server side) similar to JavaScript: document.Form.submit() Thanks in advance

Part and Inventory Search

Back
Top