Search results for query: *

  1. M

    Insertion in mysql

    Ok, thanks for your help. We'll give it a thought.
  2. M

    Insertion in mysql

    Thanks for your advice, in our case it should be oracle since we have to run the db both in windows and linux. It is a very simple db, it only consists of a single table with five fields (and one index) and there are not updates or deletions. In this case, do you think paying for a license is...
  3. M

    Insertion in mysql

    Hi, I am using mysql because it just suits our needs and it is free. Anyway, the problem is solved, though it seems a bit unelegant to me: each time i want to insert some values i have to do the following: Dim myCommand As MySQLCommand Try myCommand = New...
  4. M

    Insertion in mysql

    Hi, I am new to mysql through vb.net and have a problem when inserting data in mysql: when i have 2 different inserts, the code inserts the first value twice. The code is the following: Imports MySQLDriverCS Public Class Form1 Dim DBCon As MySQLConnection Dim myCommand As New...
  5. M

    Transparent labels

    Hi, Been a little busy these days so i couldn't post earlier. The code is basically what InertiaM wrote with some events to handle the movement of the mouse, so i will post this event handling. Private bmouseDown As Boolean = False Private dragPoint As Point Private Sub...
  6. M

    Transparent labels

    Thanks for your replies Hi, Thanks a lot for your reply, it has been very helpful. I have developed a label control that moves around a form and you can see trough no matter what is beneath. As the text of the label can be filled in dinamically, i had to do some workaround to calculate its...
  7. M

    Transparent labels

    Hi everyone, I would like to develop a transparent label so that it does not depend on its parent. For example, imagine you have a form with a picturebox and a label. If you set the background property of the label to 'transparent', you will see the form below the text of the label. So far...
  8. M

    Performance and image size

    Hi, Thanks for your helped. I already had solved the issue using the same strategy as you mentioned. But there is quite a tricky thing: digital cameras store a thumbnail by themselves so that when you use GetThumbnailImage this thumbnail is recovered. As a result, you get an image with very...
  9. M

    Performance and image size

    Hi all, A couple of weeks ago i posted a question and found your help really useful. I have now another question: i am developing an app that basically consists of a tree view and when you click on any of the images displayed in the tree, the image loads on the main area of the application...
  10. M

    Refreshing a form while doing ftp

    Nice and easy... thank you very much, JohnH.
  11. M

    Refreshing a form while doing ftp

    Hi, This is my first post here. I am developing a simple ftp client to put files in a server. The client also shows the progression: it tells how many files have been uploaded. It works fine except for one problem: when opening a new application or changing to another opened application...
Back
Top