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 TouchToneTommy 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: *

  • Users: Plato2
  • Content: Threads
  • Order by date
  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

    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
  7. 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
  8. 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
  9. 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
  10. 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
  11. 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?
  12. 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
  13. 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
  14. Plato2

    How to post form values using HttpWebRequest to HttpWebResponse

    I'm trying to get HTML content of a remote web site. I need to pass form values to HttpWebRequest object. How can I do that? I tried many ways but i doesn't work for me. Any ideas how to do that? Thanks in advance
  15. Plato2

    A problem with HttpWebResponse object to get HTTP Response

    I'm trying to get an HTML content of a remote page. This page accepts Login and Password. I'm trying to pass login and password but HTTP content get returned is not correct. Any idea why? Thanks in advance Dim lcUrl As String = "https://www.myurl.com/login.aspx" Dim UserName, UserPwd...
  16. Plato2

    How to allign DIV or SPAN tag in a table cell

    Is there is a way to align a div or span tag within a table cell? I want to set top and left property for a div or span tag specifically for a table cell. Thanks in advance
  17. Plato2

    Regular expressions - problem to replace multyline html tag

    I'm using regular expressions to replace a multyline hyperlink: result_str = Regex.Replace(result_str, "<a[^>]*>(.*?)</a>", "", RegexOptions.Multiline) This expression replaces all hiperlinks except for multyline hyperlink The following hyperlink was not replaced <a...
  18. Plato2

    A problem to open Crystal 10 from VS.NET - RAS

    I'm trying to open Crystal Reports 10(Advanced version) from ASP.NET. I get the following error: Access denied. Please check directory setting for files you can access. ----------------------------------------------------- Public Sub CreateReport() ' create an instance or Report Client...
  19. Plato2

    My ASP pages do not work on iis but ASP.NET pages do work...

    I don't know why when I try to run ASP page on my local server they don't work and I receive the following error:"The page cannot be displayed" But when I run asp.net page everything works fine. How can I solve this problem? Thanks in advance
  20. Plato2

    A problem to replace a string with forward slashes….

    I have a string with forward slashes.("/cgi-bin/detail.dtw/disp") Dim result as string result=".........../cgi-bin/detail.dtw/disp............" I want to replace this string everywhere where it finds "name2/name3" with something else. But it never replaces it. I do: Replace(result...

Part and Inventory Search

Back
Top