Search results for query: *

  • Users: digita
  • Content: Threads
  • Order by date
  1. D

    activating mdi child

    I have created an mdi form, both parent and child. Now i want to add some navigation, I already have the tile horizontally en verticaly. Now i want to make something like there is in Microsoft Word, that means that you can select a certain document and then give it focus. I mean like this...
  2. D

    Load form in form

    Hi, I was wondering if it is possible to load a form into another form. I have a toolbar with a few buttons. I want that when I click on these buttons the form is loaded in some kind of panel. I only have to load one form at a time, so i could use the same panel. Is this possible?
  3. D

    send files from one pc to another

    Hi, I dont knwo if this is in the right category, but I have a question that comes close to the discribesion. How can I transfer files (e.g. zip files, or word documents) from one pc to another? I don't any idea on how to start on this, so I hope someone can help me out. I am currently...
  4. D

    how to make a selectcommand return key column information

    I am not sure where to put this question so i have put it in the general section. I have a problem updating my database using this code: Private moDS As DataSet Private Sub DataUpdate() Dim oAdapter As OleDbDataAdapter Dim oBuild As OleDbCommandBuilder Dim oDR As DataRow Dim...
  5. D

    two actions to one button

    hi, I have a very simple question, but i can't figure it out. I have a button and i want to use that button to hide and to show a groupbox. but how do i do that? I tried this, but that isn't right PrivateSub btnTechInfo_Click(ByVal sender AsObject, ByVal e As System.EventArgs) Handles...
  6. D

    not equal

    hi, This should be very simple but how do i set something to not equal the other thing . i mean like this. Private Sub frmDataInsert_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load If txtBetaalMethode.SelectedText = "" Then lblBetaalWarning.Text = "LET OP...
  7. D

    Load two fields in one listbox

    Hi, I have a problem with populating a listbox. What i want is this: I have an Access database with a table "MemberData" and in that table a few columns (Surname, Name, Address etc.). I want to load the "Surname" and the "Name" in a list box. Then when i click that name in the listbox select...
  8. D

    Conversion Not valid?

    Hi, I have some code, but it tells me that the conversion is not valid, and i don't know why, because i think that it should be okay. PrivateSub frmProducts_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesMyBase.Load ListLoad() EndSub PrivateSub ListLoad()...
  9. D

    Search form

    Hi, Is it possible to use sql queries in vb? I ask this because i need to make a search function to search an Access Database. This is what i had i mind. i have made a form with field on it, say name and address. is it then possible to make a button and add the action select * from...
Back
Top