Search results for query: *

  1. U

    webbrowser download location?

    I have some code that makes it possible to download/convert a youtube movie (through a website) to mp3, it shows the download screen, but the location I want to be a specific location. Here is the code I use, hope some one can help me: Private Sub ButtonX2_Click(sender As System.Object, e As...
  2. U

    exit program when setup is running

    Oh sorry it did work, but when I debugged it in vs2010, the exe wasn't showing, when I run the app outside vs2010 I got the message and it was exit.
  3. U

    exit program when setup is running

    it's actually: StartsWith("your proc name") ;) but that didn't work either, the message of MessageBox.Show("OK I'm sure it found my proc") isn't shown at all.
  4. U

    exit program when setup is running

    That didn't work, the messagebox isn't showing. so it's not being found.
  5. U

    exit program when setup is running

    I've created a program with vb2010 and I am kinda stuck with the following: When I run the program it checks if there is an update for it, if so, then the exe is downloaded and is executed, the program (main program) then checks if the setup is running, if so the program quits so the setup can...
  6. U

    Question Check if item exists before adding it

    I have a datagridview and I can add a selected item from the datagridview to a listview by double click the grid. This does work, but I want to check if the item I try to add does already exists in the listview. I have the following code, but this doesn't work: Private Sub...
  7. U

    datagridview image instead of value in column

    Thanks, yeah that worked (after I turned virtualmode to false, don't know why it was true). Thanks again.
  8. U

    datagridview image instead of value in column

    Well I've working a bit with my own code and got the error message removed. But now only a red cross is shown (the default img of the imagecolumn). Here is the code (the message.show line gives a false message, because that is the value in that column): Private Sub ShowAllButton_Click(sender...
  9. U

    datagridview image instead of value in column

    Doesn't make any differents
  10. U

    datagridview image instead of value in column

    Thanks again for the reply, yeah I know, but the strange thing is, that the original code creates an image column (to display in the datagridview) with the same name as the column in the sql database. I have tested the original code and saw that it works, it does show a column with images...
  11. U

    datagridview image instead of value in column

    Thanks for your reply, I have changed the code, but still getting the same error message. I have no I idea why it works in C# and not in VB
  12. U

    datagridview image instead of value in column

    Well, I've changed the connectionstring. Now the test application (from original source) works. So my guess is that I have something wrong with the database column, (the original uses SQL and I need to use ms access 2007 database).
  13. U

    datagridview image instead of value in column

    You are kinda right, Dunfiddlin. The original column "Trumpet" is a 0,1 column. This is hiding, a new column is created and should check each row if in column "Trompet" 0 or 1, than the image is set to that specific row. Now is it the thing that the original code (writing in C#), has the same...
  14. U

    datagridview image instead of value in column

    Anyone an idea?
  15. U

    datagridview image instead of value in column

    I have a datagridview with a ms access database. It shows all the records that I have in the database, but the thing I'm struggling with is, that a column in the database contains 0 or 1 (which I use for checkbox), now I want to change that value (or change the column into a imagecolumn. At...
  16. U

    Forms in panel with custom colored square around it

    I have a win form, a panel and on that panel I can add multiple instances of a form (without border, pre-created), after I click a button. Now what I would like to know is how can I add a custom colored square around a click form, to make it selected and when I click another form, that one will...
  17. U

    yahoo won't receive emails send from vb2010

    I just found out that there is no problem with my program, a test email I send to my yahoo account, was received this morning, while I had send it yesterday (saturday in the morning). Yahoo has serious issues with it's servers I guess.
  18. U

    yahoo won't receive emails send from vb2010

    I have a program which I created with vb2010, with it I can email. I use my own domain as a host to send the emails from. This works fine, hotmail, gmail, etc, are receiving the emails, but only yahoo won't receive them. Is there something yahoo has in their mail settings. It's not that the...
  19. U

    Question WMP on second form won't play in fullscreen

    I solved it, it wasn't the screen that went black, but the the thumbnail in the startbar (on windows 7). This question can be marked as solved.
  20. U

    play youtube video with wmp in vb2010

    I've been trying to make a videoplayer that can choose to play, regular video files and also youtube video by supplying the link. Programming code: vb2010. The regular video files are working, but the youtube aren't working. I know I should use the url as followed...
Back
Top