Search results for query: *

  1. U

    creating form from webform

    hi, I have one situation.. I have one web page on that page I have few textbox and other controls at the end I have save button one more butten edit is there... As soon I click on edit button It should create pop up window and pop up window shows 2 text boxes and save button...as soon as I click...
  2. U

    debugging error problem

    hi, I got a problem when I run the application.. It gives me error like... Error while trying to run project: Unable to start debugging on the Web server. You do not have permissions to debug the server. Verify that you are a member of the Debugger Users group on the server. Would you like to...
  3. U

    make datagrid editable

    Hi, Thanks for reply. But I think you don't understand my question. Actually I have datagrid in which data is coming from database. Now I want as soon as I click on particular cell that cell is converted into textbox or textbox appears in that particular row and the text in cell comes directly...
  4. U

    make datagrid editable

    datagrid problem not solved hi, I tried to open that site but its not showing what I want. Please provide me the answer how to make datagrid editable. thanks...
  5. U

    make datagrid editable

    hi, I am using datagrid to show data contained in table ind database. Now I want to make this datagrid editable so that i can add,update and delete data from datagrid and that shoud affect in database also... I hope I will get answer very soon.
  6. U

    adding linklabel at runtime withevents

    hi, i have created one form in which when user log in that form will show all the accounts related to that user and that will shown in link label like this account 1 account 2 account 3 Now my question is when user clicks account 1 it will show detail for account 1 and when user clicks...
  7. U

    showing table from sql server in datagrid control

    code for datagrid Dim dap As New SqlDataAdapter() /*Global variable Dim ds As DataSet /*Global variable /* cm1 is sqlcommand dap.SelectCommand = cm1 ds = New DataSet() dap.Fill(ds) DataGrid1.DataSource = ds DataGrid1.Expand(0) DataGrid1.ReadOnly = True
  8. U

    showing table from sql server in datagrid control

    hi, I am using datagrid control and showing data from sql server at runtime. Creating data adapter and dataset at runtime than assiging dataset to datagrid. datasource property. but when it is showing datagrid with data it is showing datagrid with table name and when i click on table name it...
  9. U

    How to deploy windows application with Microsoft sql server 7.0 database?

    hi, I have one project which uses data from sql server 7.0. Now i want to deploy this application with sql server 7.0 database. how can i do it? I don't want to use Access database.
  10. U

    Text box text validation

    hi, I am validating text character in textbox control. I want to validate that in text box control only particular character should be entered. Like if someone enter abc/abc than / is not a valid character. How can I do this? thanks
  11. U

    how to set icons for application to be deployed?

    hi, I have created one project and i am going to deploy it but i found error like when i am making exe i want to set my own icon with that exe during deployment and in setup and deployment wizard i do not find it how can i do this?
  12. U

    showing form

    hi, my module code is like this.. Public cn As New System.Data.SqlClient.SqlConnection() Public cm As New System.Data.SqlClient.SqlCommand() Public dr As SqlClient.SqlDataReader Friend fuser As frmUser Friend fRoot As frmRoot Public Sub main() Dim frmsplash As New frmSplash() Dim...
  13. U

    closing from in between application

    hi, I have created one project in vb.net and there are so many forms in this project. This project contains login facility so what I want to know is in between application I want to close the particular form, but I can not close that form. me.close is not working what should i do? can i have...
  14. U

    attaching icon to windows forms

    hi, I am trying to attach Icon in windows form at design time, I am making .ico file than after in form.icon property I am attaching that file to form but at run time It is now showing that Icon attached to that form.
Back
Top