Search:

Type: Posts; User: dunfiddlin

Page 1 of 13 1 2 3 4

Search: Search took 0.46 seconds.

  1. VS 2019 Re: Throws an error after adding one more extra field in the code!

    Self explanatory, really. Join combines two sources and only two sources.
  2. Re: MediaInfoDll.vb temporally temperamental

    Should anyone be interested I finally abandoned MediaInfo and replaced it with running ffmpeg as a process (with a hideously complex command line) to obtain the information I need. Although results...
  3. [RESOLVED] MediaInfoDll.vb temporally temperamental

    I am trying to incorporate a media info test into an existing media cataloguing program (mkv files), thus ....


    For Each fp As String In...
  4. Replies
    1
    Views
    16,843

    Media Casting Fail

    Blank Page Project in Visual Studio 2017 UWP

    This code will be familiar to anyone who has seen the UWP Samples and/or the Media Casting article but I just cannot get it to work. The connection...
  5. Replies
    145
    Views
    13,230

    Sorry guys but I'm done!

    You may be able to put up with the ridiculous, unfair, humourless repression of free speech that this forum is ... no that one moderator seems to think should be but after the shameless backing down...
  6. VS 2010 Re: Mouse flickering when step into in visual studio 2010 IDE

    You know what. I'm done with this bloody stupid persecution. Don't bother banning me. I quit!
  7. Replies
    21
    Views
    2,965

    Re: [VB2010] - my 1st database

    Er .. don't really understand that question. You have the database already in place. You can connect to it from any project using the Connection string you have in the current project.
  8. Re: VB 2010 Webbrowser - How to click a link TWICE

    It may need a delay between the two clicks to ensure that they're registered separately. There are various ways to do that. I would probably try a Sleep ( Threading.Thread.Sleep(100) first....
  9. Replies
    21
    Views
    2,965

    Re: [VB2010] - my 1st database

    Of course. The database is just another resource like any image, text file etc. You may ruin into some issues if you're running both programs at the same time with concurrency but we can cross that...
  10. Replies
    6
    Views
    903

    Re: How to arrange bit side by side

    I'm sorry but that really doesn't seem to make any sense. If the bit value is 00010000 then that must be r = 0, g = 100, b = 0, mustn't it? I'm also a bit confused as to why b only gets 2 bits but I...
  11. Re: Issues saving data from datagridview to database

    Challenge? Pfft!

    Are you accessing a database included in the project? If so click on it in the Solution Explorer and cast your eyes down to the Properties window and where it says Copy Always,...
  12. Re: Retrieving information from another application

    I've had a quick look at this but I think you must be using an older version than the one currently available as I am unable to get even as far as you have. It certainly doesn't appear to be a...
  13. VS 2012 Re: How to publish update database Sql by vb.net project.

    Ok. First thing to say is that that is an insanely large database! What have you got in there a complete history of every man woman and child in China?

    Obviously you're not going to be able to...
  14. Replies
    2
    Views
    1,045

    VS 2008 Re: i need help for complet my project

    Has Google been blown off the planet by an evil alien ray gun diverted via the Sky satellite?

    Nope. Apparently not.
  15. Replies
    7
    Views
    1,142

    VS 2010 Re: Update Login Details to Database

    Yes!
  16. Replies
    7
    Views
    1,680

    Re: Plotting a stacked column graph

    Personally I'd rather gnaw my own arms off than use the chart control in most situations so truth is I don't know. I'd advise against it though even if it is possible because it will be come a very...
  17. VS 2010 Re: Mouse flickering when step into in visual studio 2010 IDE

    So's waiting for a bus in the rain when you've got a cold and the next person in the queue keeps poking you in the eye with the edge of an umbrella but of the two I'd say your predicament is really...
  18. Replies
    12
    Views
    1,605

    Re: Connection to database not closing...

    Sorry but ...

    ' Check connection to database
    Dim myDB As New DBAccess()
    If myDB.Connect("myDatabaseName") = False Then
    Return False ' return where?
    ...
  19. VS 2010 Re: VB 2010 - Detect what webpages are open in IE and Google Chrome.

    Security, you say? Don\t you mean a way to stop the little darlings 'enjoying' themselves? This isn't in any way a coding issue. There are several ways of limiting sites that may be visited including...
  20. Re: VB 2010 Webbrowser - How to click a link TWICE

    :confused:

    elm.InvokeMember("click")
    elm.InvokeMember("click")

    ... Shirley?
  21. Replies
    8
    Views
    3,229

    Re: Need help for macros to work on 64 Bit

    You have 3 timers (quite why I know not) and you only start one of them (unless you have them set Enabled at Design Time?) So, no, it doesn't work!

    The declaration for GetAsyncKeyState, I already...
  22. Replies
    26
    Views
    4,440

    Re: What is wrong with the relational model

    Er .... that's what passes for the ontological argument these days, is it? My old philosophy teacher must be spinning in his grave (assuming he's actually dead, of course!)

    I've been meaning to...
  23. VS 2010 Re: Serialize and deserialize structure data to-from XML

    MSDN:



    There you go.
  24. Replies
    23
    Views
    3,908

    VS 2013 Re: Saving Structures Within Binary Files

    100x, eh? So what takes 1 second in VB6 takes 1 minute and 40 seconds in VB.Net?
  25. Replies
    4
    Views
    2,882

    VS 2013 Re: Does Registry "SubKey" Exist Or Not

    I don't know what you call the old days but VB programming existed long before the Registry did and I certainly don't remember it ever being sweet and simple!
  26. Replies
    8
    Views
    3,229

    Re: Need help for macros to work on 64 Bit

    Just because you have a 64 bit machine doesn't mean every variable has to be 64 bits. How would that even work with strings, for example? Use the type that the function requires. That won't change...
  27. Replies
    9
    Views
    1,769

    Re: Ok, who broke Quick Reply?

    Yeah what si_the_geek said. Seems to have fixed itself now.
  28. Replies
    23
    Views
    3,908

    VS 2013 Re: Saving Structures Within Binary Files

    I'm sorry. I 'av a cold! [Waits for reference to be plucked from cultural soup]

    (Looks like it's gonna be a stinker too, dagnabbit!)

    You know what I meant. I might even have known myself at one...
  29. Replies
    11
    Views
    1,472

    Re: Memory Game Problem

    You can't compare images and even if you could it wouldn't help because the PictureBox stores images in a totally different format so the image in the PictureBox is literally not the image that you...
  30. Replies
    8
    Views
    3,229

    Re: Need help for macros to work on 64 Bit

    Ermm, the function is GetAsyncKeyState(ByVal vKey As System.Windows.Forms.Keys) so what's LongPtr got to do with it?

    In any event you would be far better of using the hotkey functions. Use the...
  31. Re: I am using visual basic 2010 and require help to proceed

    You really don't. It's essentially exactly the same procedure as what you've done so far. You could snazz it up a bit by having the user type in an option rather than a price but before this turns...
  32. Replies
    14
    Views
    2,354

    Re: Rotating Picturebox Array...Again

    Well that's nice and all but it might help to, you know, like tell us? (To be said out loud with the appropriate rising inflection or this'll be another one of my Parodies Lost!) ;)
  33. Re: I am using visual basic 2010 and require help to proceed

    Um. I'm sure that even in Greek an adjective can't mean a noun! Kudos is in this case a naturalised English word anyway. Any darker associations may be discounted.
  34. Re: Retrieving information from another application

    Well we got there in the end after a fairly ropy start! :p Yeah, I don't mind taking a look at this but it may be a day or two.
  35. Replies
    23
    Views
    3,908

    VS 2013 Re: Saving Structures Within Binary Files

    I must say it's screaming database at me but at least get out of that VB6 way of thinking. Structures and arrays are so ... well ... last century when it comes to data storage. Classes give you...
  36. Replies
    7
    Views
    1,680

    Re: Plotting a stacked column graph

    .... then you're not checking it every hour as you said in your original post and suggested in the code example. It's kinda difficult to offer the best solution if you move the goalposts.

    If what...
  37. Replies
    3
    Views
    760

    VS 2008 Re: Putting an image in an RTF-file

    Graphics are stored in an RTF file as binary arrays so, not to put too fine a point on it, you simply can't do it that way (well that's not strictly true but I really can't recommend it so for all...
  38. VS 2010 Re: Help in creating a DLL file to close some processes

    Whoa there, cowboy! You want to load a VB library into a C++ program? Good luck with that! Why aren't you writing a C++ library (or simply including the routine in the game in the first place)?
  39. VS 2013 Re: Bookmarks Bar like Chrome in Visual Basic

    tlsBookmarks.Items.Add(bookmarkDetails(0), Nothing, AddressOf Bookmark_Click).Tag = bookmarkDetails(1)

    :confused: If that compiles, I can't believe that it does what you think it does. And if it...
  40. Replies
    10
    Views
    2,511

    VS 2013 Re: Unhide all files and folders

    Well what does 'not working' mean? I can say that I'm extremely unwilling to let you leave On Error Resume Next in there. It would be kind of useful to know if there are errors rather than ignoring...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width