Search:

Type: Posts; User: BruceG

Page 1 of 13 1 2 3 4

Search: Search took 1.26 seconds.

  1. Replies
    6
    Views
    882

    VS 2019 Re: VB implicit variable typing

    Thanks .paul. - actually just found that! And that was the cause of my issue - the POC project had it on, but the main project had it off.
  2. Replies
    6
    Views
    882

    VS 2019 Re: VB implicit variable typing

    Hey guys - searching the "entire solution" for both projects yields same results:
    "Option Strict" appears in Application.Designer.vb, Resources.Designer.vb, and Settings.Designer.vb.
    "Option Infer"...
  3. Replies
    6
    Views
    882

    VS 2019 RESOLVED - VB implicit variable typing

    Hello,
    I have 2 VB projects open in VS 2019 on the same computer, one is my main project, the other is a proof-of-concept program written by a colleague. I am copying over some code from the...
  4. VS 2019 Re: embedded email client component? - OR - a better WebBrowserControl?

    Checked out WebView2. Looks like that's going to be a winner. Thanks, jmcilhinney.
  5. VS 2019 Re: embedded email client component? - OR - a better WebBrowserControl?

    Nice, WebView2 looks like a promising option.
  6. VS 2019 Re: embedded email client component? - OR - a better WebBrowserControl?

    I may have been barking up the wrong tree ... I'm thinking what is really called for is a WebBrowser control, but not the built-in one as I believe it is a wrapper for an older version of IE and...
  7. VS 2019 (RESOLVED) embedded email client component? - OR - a better WebBrowserControl?

    Hey team,
    Just putting some feelers out there - does anyone know of an embedded email client component/control that can be used in a VB.NET app? The concept similar to what was done back in the day...
  8. Replies
    5
    Views
    750

    Re: SQL 2005 trigger glitch?

    Thanks, guys, this has been a good teachable moment for me.
    I have come to find out that wqweto is indeed correct.
    The form of the INSERT statement that is being used in this legacy app is...
  9. Replies
    5
    Views
    750

    Re: SQL 2005 trigger glitch?

    Just found the answer: apparently the funky INSERT/SELECT syntax inserts the values in the order specified, ignoring the "colname = " part.
  10. Replies
    5
    Views
    750

    [RESOLVED] SQL 2005 trigger glitch?

    Hey, wondering if any fellow old-schoolers ran into this issue, and if this is a SQL 2005 glitch or whether I did something wrong.
    This is really a "post-mortem", as I seem to have fixed the issue. ...
  11. VS 2019 Re: unexpected behavior with ctype and nullable byte (byte?) variable

    Thanks for all your input gentlemen, good advice all around.
  12. VS 2019 Re: unexpected behavior with ctype and nullable byte (byte?) variable

    Thanks, jmcilhinney. Your response further confirms and clarifies what has been observed here.
    Easier to understand is the behavior of the If function ("two potential return values must be the same...
  13. VS 2019 unexpected behavior with ctype and nullable byte (byte?) variable

    Hello - I had an issue that I have now corrected, but I'd like to understand why the original way I had this behaved as it did.
    Original way:


    Dim b As Byte?
    Dim s As String = " " '...
  14. Re: RESOLVED - create sql bacpac from asp.net code

    Hello - I know it's been a while, but was finally able to resolve this. Thanks to wqweto for pointing me in the direction of the DacServices class. Using DacServices, we initially tried to do this...
  15. Re: create sql bacpac from asp.net code

    Thank you - I will check it out and report back here once I have given it a try.
  16. Re: create sql bacpac from asp.net code

    Thanks for this. The problem is (I believe) running an executable on a shared hosting site. What I have done thus far is run a test for this locally, and as I expect, sqlpackage runs fine. (Behind a...
  17. RESOLVED - create sql bacpac from asp.net code

    Hello. The situation is, we have an ASP.NET application running on a shared hosting site. I would like to be able to somehow run a backup of the SQL database on a regular interval (say once per day),...
  18. VS 2017 Re: (Resolved) Ideas on quicker way to create forms with many fields

    No offense taken then.
    I have marked this as resolved, as I was able to write a quick utility to do what has been described (read in a csv file with the desired control types, names, text, etc.) and...
  19. VS 2017 Re: Ideas on quicker way to create forms with many fields

    Thanks .paul. - no need for nastiness here - job trying to get work done.
  20. VS 2017 Re: Ideas on quicker way to create forms with many fields

    Great minds ...
  21. VS 2017 Re: Ideas on quicker way to create forms with many fields

    Hi sapator, thanks for your response. I know this type of thing can be done at run-time by dynamically adding controls as you suggest. What I am looking for here is a "design time" solution -...
  22. VS 2017 (Resolved) Ideas on quicker way to create forms with many fields

    Hello all,
    Wondering if anyone has ideas on how to generate code for controls for forms with many fields.
    These are for applications where the VB form needs to simulate an existing paper form...
  23. Re: Generating one recordset from another (output of stored proc)

    Thanks dilettante - I am well aware of subqueries - using SQL Server here (an older version), I do not believe SQL Server supports what you are suggesting here (if wrong, I am all ears ...)
  24. Re: Generating one recordset from another (output of stored proc)

    Thanks - interesting - will take this under advisement ...
  25. Generating one recordset from another (output of stored proc)

    Hello all,
    I have a "SELECT" stored procedure which returns a recordset consisting of about 20 fields. After calling the sp, I use the recordset to populate listview. All of this works fine.
    The...
  26. Re: "Best fit" problem: Split one array (or list) of strings into 2 arrays (lists)

    ChrisE - thanks for responding, however you were dealing with all "one-liners" in your example (i.e. you did not have the problem of items that span multiple elements of the list that have to be kept...
  27. Re: "Best fit" problem: Split one array (or list) of strings into 2 arrays (lists)

    The fundamental issue is that the order of the original list will likely need to be changed to accomplish the desired result (my problem is how best to accomplish that reordering). In your code,...
  28. Re: "Best fit" problem: Split one array (or list) of strings into 2 arrays (lists)

    Thanks for your response, but I can't do what you suggest - the sentences that are multi-line must remain that way, as the application that this is for is to display this data in a 2-column table on...
  29. "Best fit" problem: Split one array (or list) of strings into 2 arrays (lists)

    Hello all, the problem at hand is as follows: given an array (list) of strings, break up that list into 2 lists having an equal number of items (or as close to equal as possible). Not as easy as it...
  30. Replies
    11
    Views
    1,013

    Re: Help with code logic

    Try this:


    Private Sub Command1_Click()
    Dim a() As Long
    ReDim a(1 To 9)

    a(1) = 2
    a(2) = 2
    a(3) = 3
  31. Replies
    2
    Views
    992

    VS 2015 Re: Position listbox below textbox

    Beautiful - thanks very much!
  32. Replies
    2
    Views
    992

    VS 2015 RESOLVED - Position listbox below textbox

    Hello, hoping to get some help on the following:
    I have a textbox and a button inside a panel.
    When I click the button, I would like to position a listbox below the textbox, where the listbox...
  33. Thread: VB6 Work

    by BruceG
    Replies
    6
    Views
    7,322

    Re: VB6 Work

    Something funky seems to have happened, because I don't see the PM I sent you in my Sent Items (sigh). Anyway, please do email or call.
    Look forward to hearing from you.
    Thanks,
    Bruce
  34. Thread: VB6 Work

    by BruceG
    Replies
    6
    Views
    7,322

    Re: VB6 Work

    OptionBase1: thank you very much for responding. I did in fact receive your PM, and responded back to you via PM as well, where I left you my contact info. In case you did not get it, my contact info...
  35. Thread: VB6 Work

    by BruceG
    Replies
    6
    Views
    7,322

    VB6 Work

    Hello. I am an independent programmer who has been operating primarily as a one-man company for the last 8+ years. I am looking to expand, or at least maintain a fairly robust roster of clientele,...
  36. Help with VB4 application (monitors animal physiological processes)

    Hello all,
    I hope it is OK to post this link here - I posted the following in the Jobs section:
    http://www.vbforums.com/showthread.php?855279-Looking-for-help-with-legacy-VB-projects
  37. Replies
    0
    Views
    2,936

    Looking for help with legacy VB projects

    Hello all,
    I'm looking for help with legacy VB projects. When I say help, I want to make it clear that it would paid help for a fair hourly rate, open to discussion.

    The main project I would be...
  38. Re: program crashes upon closing modal form (exe only, not in ide)

    Hey friend, thanks for responding ...
    Only the newly created form exhibits this behavior. It's started by Sub Main. No subclassing that I can see. Not sure what you mean by if it is manifested for...
  39. program crashes upon closing modal form (exe only, not in ide)

    Hello team,
    We are working on a legacy VB6 app. We added a new dialog form and are showing it using vbModal. Upon closing this form, the program crashes when run as a compiled exe, but works fine...
  40. Replies
    7
    Views
    1,801

    Re: "AddressOf" workaround for VB4

    Hi LaVolpe,
    I appreciate your response - however, I did come across that code on GitHub, and I did in fact play with it, but I couldn't get things working - it appears that this code is designed to...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width