Search results for query: *

  1. D

    activating mdi child

    Thanks! Now i have another question: is there also a way to activate an mdi child through code e.g. clicking a button or tab. I'm using mdi to load other forms and I display them in tabs. I prevented that they can be opened more than once, but now I to activate the mdi child when the form is...
  2. 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...
  3. D

    Load form in form

    I have a main form which has mdi enabled to load a second form. Now i want to load another form on that second form. I can't do that via mdi because a mdichild can't be a mdiparent at the same time. So my question is, is it possible to load an other form in a form without using mdi?
  4. D

    send files from one pc to another

    thanks, but how do you save that image again as a file?
  5. 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?
  6. 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...
  7. 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...
  8. 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...
  9. D

    VB.NEt - Problem with Listbox

    make sure that the dotnet framwork is installed, and just make an install project, then you are sure that all depencies (db etc etc) are also packed and transported to the other computers
  10. D

    Updating VFP databse

    I don't know the answer to this one, but try to use the code ( and ) tags to make your question more readable.
  11. D

    Load two fields in one listbox

    I do make that hashtable solution?
  12. D

    Load two fields in one listbox

    Thanks, but there are two problems now: first of al, that "new listitem" does not exist, (gives me the type listitem not defined error) so i used ListViewItem, but that not good, because that show the ListViewItem text in the listbox. Second, how do I implement that id in my SQL Select...
  13. D

    Load two fields in one listbox

    Thanks it works, but i have another question. I use this code to populate the listbox PrivateSub ListLoad() Dim oCmd As OleDbCommand Dim ODR As OleDbDataReader Dim strSQL AsString strSQL = "SELECT Id, Achternaam + ', ' + Voorletters AS FullName FROM Gegevens" Try oCmd = New...
  14. D

    not equal

    Yes that's where i was looking for, thanks
  15. 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...
  16. 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...
  17. D

    Conversion Not valid?

    Thanks for your reaction, but it gives me a syntax error.
  18. 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()...
  19. D

    Search form

    Thanks that has been very usefull, Thanks again.
  20. D

    Search form

    I mean that i have a couple of fields, say Name and Address. How can i put the name i search for in a textbox. Because i search by name, but the rest (address, phonenumber, etc) is also selected. I want to put those in the corresponding textboxes. I thought something like this Name1.Text =...
Back
Top