Search results for query: *

  1. N

    icons

    Hello, Does anyone know any website where i can download for free icons for my vb.net projects,i need icons for save button and delete and stuff like this... and there is any site where i can found these icons not only in their standard look... Thanks. .NETDEV
  2. N

    close and open the same form!!!

    Hey guys! i have a form and i want to have in it a button where i want this form to close and then open the same form again i am trying this code : Me.Close() Dim frmemp2 As New frmemployee frmemp2.ShowDialog() It is opening the form again but without exiting the first one am getting two...
  3. N

    Add And Then Modify

    here is my modification button code : Private Sub btnmodify_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnmodify.Click btnsave.Visible = True cmdRequery.Visible = True txtfirstname.Enabled = True txtlastname.Enabled = True ComboBox1.Enabled = True...
  4. N

    modifying a record after adding it

    i have done my vb.net form linked to database access the problem am facing is that if i add a record then tries immediatley to modify it it gives error but if i modify any other record created before it works... wut is the bug that is buggin me and stoping the program to run properly?? Anyone...
  5. N

    renaming a directory in vb.net

    Hello.... Do Anyone have an idea about renaming a directory in vb.net??? Regards!!!
  6. N

    Binding To ComboBox

    Hello guys, Another question in vb.net in my vb.net form that is connected to a database access: On The form Instead of displaying the Employee ID field which is not very meaningful to end users, I want that the Combo Box to display the employes name while storing its associated ID. How can i...
  7. N

    Windows Explorer window

    Hello Again, Thanks for all the help you are providing me i would like to know if anyone have an idea about how to : 1- open a folder using Windows Explorer window vb.net i have a button and when i click on it i want it to open the folder using a windows Explorer window I guess it will be my...
  8. N

    Empty lines in multi textbox

    Dear jmcilhinney i appologize for sending from two diferents users same kind of questions it wasn't on purpose.I have two accounts and i use them with my friend which it seemed that she asked same question as she didn't pay attention that i post it. Forget my other question.... i have...
  9. N

    Copy Textbox

    Thanks for the reply each employee record has a field called "report to" (integer of 4) and it means the id of the employee who is rsponsible of him in my vnet form the "report to" field is a combo box of the all employee names wut i want to know is how i can save to the database while the...
  10. N

    Copy Textbox

    DEAR ALL, IGOT A PROB THAT MIGHT BE EASY FOR YOU GUYS I HAVE A FORM1 WITH A TEXTBOX AND A BUTTON LEADING TO FORM2 IN FORM 2 I HAVE A TEXTBOX I WANT WHEN I CLICK THE BUTTON OF FORM1 TO BE ABLE TO GO TO FORM 2 AND SHOW IN THE TEXTBOX OF FORM 2 THE TEXTBOX OF FORM1... PLZ HELP ME HOW CAN I...
Back
Top