Search:

Type: Posts; User: OptionBase1

Page 1 of 13 1 2 3 4

Search: Search took 0.18 seconds; generated 16 minute(s) ago.

  1. Replies
    33
    Views
    1,440

    Re: new project - DB help needed please

    Just throwing out a general suggestion. I believe you are using an Access database, so I'm assuming you have Office/Access installed.

    In Access, you can create queries fairly easily using wizards...
  2. Replies
    6
    Views
    219

    Re: Please Reset With ElRuffsta

    :thumb::thumb::thumb:

    Sounds good to me.
  3. VS 2005 Re: Resource filepath with id using res:// protocol

    The below threads are C#, but should be able to be easily adapted for VB.

    https://stackoverflow.com/questions/7827792/using-the-res-protocol-with-system-windows-forms-webbrowser...
  4. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    Well, that race certainly was interesting. I guess Max needs a DNF once in a while to spice things up.

    The ending was sure scary. The FIA needs to look at how they handle a last lap incident...
  5. Replies
    33
    Views
    1,440

    Re: new project - DB help needed please

    Already been asked and answered in one of your past threads. Please learn from your previous questions and answers.
    ...
  6. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    fyp.
  7. Replies
    12
    Views
    334

    Re: Using a module

    You seem to be stuck in the thought process that a Module would make this all easier or better organized, and then in practice you will discover that it isn't either of those things.

    There's...
  8. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    I think it is normal for F1 teams to bring 3 cars to each race. I didn't see an explanation as to why Williams only brought 2. I would guess cost of transporting an extra car to Australia may have...
  9. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    I saw that too. Albon is clearly the better driver than Logan, but it still sucks for Logan.

    Reminder for everyone that the race is late Saturday night / early Sunday morning (depending on your...
  10. Replies
    4
    Views
    2,094

    Re: [RESOLVED] VB6 Draw Using API

    That page is archived in the Wayback Machine.

    https://web.archive.org/web/20100106230245/http://www.bitwisemag.com/copy/vb/vb_graphics1.html

    The links to the zipped source code in the page seem...
  11. Replies
    4
    Views
    563

    Re: binary file

    Realistically, no. You should use this as an incentive to come up with a backup strategy where you are storing a copy or copies of your work on an external drive, in cloud storage, or at the very...
  12. Replies
    12
    Views
    523

    Re: Error to do with Connectivity

    If they push back on the move from VM->Physical, and they go down the road of doing log examination on the clients and server to see if any unusual events or errors coincide with the time(s) that the...
  13. Replies
    12
    Views
    523

    Re: Error to do with Connectivity

    At an old job we had an extensive virtualization infrastructure using VMWare. We had many, many hosts, and VMWare has functionality called VMotion where a virtual machine can "seamlessly move" from...
  14. Replies
    12
    Views
    523

    Re: Error to do with Connectivity

    Is the new daily error happening only on a limited subset of PC's using your software at that location? Or is it happening on all devices at that location?

    In either case, one of the first things...
  15. Re: React Native Login connect with sql server ?

    If the SQL server is a separate server from the front end app server, then I would first make sure that the app server can access SQL server on port 1433, initiated from the app server. That can be...
  16. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    I could see Max to Mercedes if things go South at Red Bull (Helmut Marko or Christian Horner or both leaving the team).

    Alonso to Mercedes would be a good stop-gap for Mercedes if they don't have...
  17. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    11th or 12th place driver - bragging rights that they weren't the 13th+ place driver. Best of the rest of the rest.

    For the constructor's championship, the final season payouts are determined by...
  18. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    Yeah, he gassed it once Hulk pitted.

    Haas seems best poised to score points whenever one of the top 5 teams has an issue. Outside of that, though, it seems like it is:

    Red Bull - Clear #1...
  19. Replies
    24
    Views
    1,870

    Re: Very slow access

    Just got another Gateway Timeout.
  20. Replies
    3
    Views
    312

    Re: Date Add

    Dim n As Integer
    n = CInt(Mid(Combo1.Text, 1, 2))

    If InStr(1, Combo1.Text, "day") > 0 Then
    DTPicker1.Value = DateAdd("d", n, Date)
    ElseIf InStr(1, Combo1.Text, "month") > 0 Then
    ...
  21. Re: Unresolved external for localtime - Microsoft C 5.10 for MS-DOS

    I don't have MS C 5.10, but that above code works fine as-is in Borland C++ 2.0 for DOS (1991).

    For that version of Borland C++, Time.h contains this in reference to localtime:


    struct tm _FAR...
  22. Replies
    24
    Views
    1,870

    Re: Very slow access

    Happening again this morning intermittently. Maybe like 1 time in 20 when accessing a page.
  23. Replies
    44
    Views
    2,098

    Re: set form to vbmodal is not working

    https://www.w3schools.com/sql/sql_delete.asp
  24. Replies
    24
    Views
    1,870

    Re: Very slow access

    Intermittent slowness again today. Gateway Timeouts, Varnish Cache Server errors.
  25. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    Bearman's drive was pretty much the only thing exciting to watch today, outside of Magnussen slowing down 1/3 of the field to build the gap for Hulkenberg to be able to pit and retain his position.
    ...
  26. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    Another Saturday race apparently. No idea if that will be the norm this year for races in the Middle East/Asia?

    Carlos Sainz out with appendicitis. Oliver Bearman from F2 is in his seat. I...
  27. Replies
    32
    Views
    1,242

    Re: [RESOLVED] Faster alternative to Split?

    So all of the benchmarking you mentioned earlier (174 seconds, etc) was running it in the IDE? Have you tried compiling that same code as an exe and seeing how fast it runs comparitively?
  28. Replies
    5
    Views
    352

    Re: Save all record listview to ADO DB

    I would imagine that your Price and Total fields are numeric in your database, and therefore the inserted values should not be surrounded by single quote characters as you are currently doing.

    And...
  29. Re: Force vb6 standard module initialization

    It seems you are dug in to the module approach.

    Aside from the other options already provided, you could simply trust that the people who download and use your module are capable of reading,...
  30. Re: VB.net Slots game bug not easily apparent

    Multiple If statements that you posted have clear logic issues. Since this is almost certainly homework, I'm not going to tell you what the issues are, but you need to carefully examine all the...
  31. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    In the end, not much of a race. It was good to see Perez breeze through to 2nd place. Bummed that Aston Martin and McLaren didn't have a better showing.
  32. Replies
    34
    Views
    1,290

    Re: rs.Edit (help)

    As the OP has mentioned in other threads, they are a Chef by trade. They are trying to get their program functional, not needing to pass some sort of stringent commercial coding standards.
  33. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    Agreed. Meet the new F1 racing season. Same as the previous F1 racing season.

    Yes, the Atlanta finish last weekend was amazing. From the live broadcast it looked like Suarez lost by a whisker,...
  34. Replies
    3
    Views
    337

    Re: Selecting multiple entries in a List

    Make sure MultiSelect property of the ListBox is 1 or 2.

    Your posted code seems to contain some convoluted logic as I read it, but I suspect your code would work if you changed the last functional...
  35. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    I know it's early in the season, but that qualifying session should convince Sergio that he isn't going to be the champ this year.
  36. Replies
    5
    Views
    1,218

    Re: Troubleshoot Device Driver

    I can't offer any help, but can share an experience with old HP equipment.

    I set up a Windows 10 PC for my Mom, who has an old HP multi-function device (Printer/Scanner/Copier/Fax). Probably...
  37. Replies
    34
    Views
    1,290

    Re: rs.Edit (help)

    Understood.
  38. Replies
    34
    Views
    1,290

    Re: rs.Edit (help)

    https://www.vbforums.com/showthread.php?902554-COMPLETE-Starting-over-(phase-1)&p=5631482&viewfull=1#post5631482
  39. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    For the record, I'm not rooting for Red Bull as a whole. Checo thinking he can beat Max has him nearly in the "rooting against" column for me. I'd be thrilled if Max wins the driver's championship...
  40. Replies
    659
    Views
    143,200

    Re: Hamilton 5x World Champion ?

    Just in case anyone else assumed the same as me, that the opening race would be on Sunday, the race is actually Saturday morning (in USA time zones). The first 2 practice sessions are early Thursday...
Results 1 to 40 of 482
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width