Search:

Type: Posts; User: topshot

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. VS 2019 Re: [RESOLVED] Sending Live Data Out of Serial Port (Data is not Updated by itself)

    Agree 100%. My assumption was those labels are also visible somewhere so you can still see the data.
  2. VS 2017 Re: Print specific data from data grid view, and auto print from scan gun-

    I would guess that you would add an action of Insert ASCII character for each of those characters so your prefix rule would be 30 actions long assuming you used that filename.
  3. VS 2019 Re: [RESOLVED] Sending Live Data Out of Serial Port (Data is not Updated by itself)

    Since I don't see another thread from you yet, normally you "self-update" was is received on a SerialPort by handling the DataReceived event, which will fire as soon as a character comes in unless...
  4. VS 2017 Re: VS 2017 how can i loop in richtextbox and get the desired word ot number?

    What have you tried? You don't know how to search a String for another string after 5000 posts???
  5. VS 2017 Re: Print specific data from data grid view, and auto print from scan gun-

    OK, yes, I have used that section of software before. That is where you append CR or whatever or replace a character. I am not sure how you would get it to parse out your fields and print a label for...
  6. VS 2017 Re: Print specific data from data grid view, and auto print from scan gun-

    Not sure what you are referring to by the "modify data" section. I think you must be referring to something in Zebra scanner software so, no, I haven't used that before. Can you take a screen shot...
  7. VS 2019 Re: Sending Live Data Out of Serial Port (Data is not Updated by itself)

    Of course you do since that is how you programmed it. Is there anywhere else other than SendBtn.Click that you do SerialPort1.WriteLine?

    If you wanted something to happen on a defined interval,...
  8. VS 2017 Re: How to alter VB.Net Naming Standards

    The reason I do it i00's way also is so all controls of similar type are grouped together in the IDE drop downs so I can find the one I want faster. The main exception is labels that are only for GUI...
  9. VS 2017 Re: Print specific data from data grid view, and auto print from scan gun-

    If the scanner and printer are both being run through your program this should be quite easy. As jdc2000 mentioned, you can append a suffix if needed to know when you receive a complete scan, and si...
  10. Replies
    10
    Views
    3,400

    VS 2017 Re: Execution Timeout Expired

    Is your program really just sitting there for 30 seconds until timing out with that error? Once you get the error, does your program eventually recover or stay locked up? I would suspect something...
  11. VS 2017 Re: [RESOLVED] Bound DataGridview drag and drop row

    You won't learn as much if you don't engage further.

    If you just don't know how to drag and drop entire rows in a DGV, check out this stackoverflow answer for some clues on how to do that with a...
  12. VS 2017 Re: Bound DataGridview drag and drop row

    That is already a programming question rather than an algorithm. Sorry, but John is correct. Write out the steps of HOW you would accomplish what you want without any consideration of your form. Once...
  13. Replies
    8
    Views
    1,713

    Re: MySQL Replication Question

    It works fine on Community since that is what we're using, currently behind a bit at 5.6.35. It is indeed pretty straight forward to set up.

    Getting too old I guess as my memory was backwards -...
  14. Replies
    8
    Views
    1,713

    Re: MySQL Replication Question

    I guess I should have said minor then unless things have changed since 3 years ago (or maybe my memory isn't correct?). To do master-master they would both need to be 5.7.x, for example, or that is...
  15. Replies
    8
    Views
    1,713

    Re: MySQL Replication Question

    No problem having the slave offline for a while as long as all the logs exist. You can also setup master-master replication but the major versions must be the same. I don't know how robust it is for...
  16. Replies
    3
    Views
    764

    Re: Check SQL if Serial Number Exist

    Definitely doesn't look like VB.Net. Here is a .Net snippet in case that is what you really wanted that should get you in the ballpark (code is NOT tested). There are several ways it can be done.

    ...
  17. VS 2017 Re: Paint datagridview cell value based on value

    FWIW, you should have Trimmed the value. You'll note it was complaining about a single space (" "), but you were testing for an empty string (""), which is clearly not the same value. Glad you got it...
  18. VS 2017 Re: Paint datagridview cell value based on value

    Something like this should work (not tested)

    If Not IsDBNull(TblAssessmentDataGridView.Rows(i).Cells(6).Value) AndAlso TblAssessmentDataGridView.Rows(i).Cells(6).Value = CInt(1) Then...
  19. VS 2015 Re: vb.net odp.net select query from one database1.table and create table

    I would just create a database link in one of them. Then you write your DML just like you would as if it was local except any tables on the remote are appended with @db_link_name so the commands...
  20. VS 2017 Re: Use form as message box and then continue with code when it close

    Agree with John that you have no issue. The code in your routine will stop once you call ShowDialog and continue once frmSelection has been closed. Of course, if it is relevant, be sure to code for...
  21. Re: microSD card error message about how the disk is write protected fixes ?

    If you are using an adapter with a lock switch then turn the switch off. If a mobile device locked it, you'll need to put it back in that mobile device and unlock it first.
  22. Replies
    5
    Views
    969

    VS 2019 Re: Another Help Please

    You seem to already be adding text from other controls. RichTextBox doesn't output in HTML so you'd need to either convert the RTF to HTML or use a user control that outputs HTML since it uses a...
  23. Re: microSD card error message about how the disk is write protected fixes ?

    Who is right, and in what way?
  24. Replies
    14
    Views
    1,404

    VS 2017 Re: Sending email from Server

    I get the impression that Database Mail is likely intended to be called from within the database by using scripts, stored procedures or admin commands rather than by external applications. For...
  25. Re: microSD card error message about how the disk is write protected fixes ?

    Are you by some chance using an adapter that has a lock switch on it? Did this card come from a mobile device that may have locked it?
  26. Re: Why do I set a static IP in my computer without network ?

    Sounds like there must either be conflicting IPs that just aren't being reported or the networking stack on those PCs is corrupted somehow.
  27. Replies
    14
    Views
    1,404

    VS 2017 Re: Sending email from Server

    And how do you validate the user without querying the database? Are you keeping username and pw hashes somewhere else?

    One, I would never email the user their actual password, which you should not...
  28. Re: Help required with HTTP DOM WebBrowser1.Document on a "flyout-menu-heading" selec

    Generally, scraping a webpage is a pain because the bank in this case can change the page/code at any time and you have to start all over. Ideally, you should contact them to provide you with an API...
  29. Replies
    14
    Views
    1,404

    VS 2017 Re: Sending email from Server

    While I agree with peterst's assumptions, I don't agree with his initial conclusion. If you were to email a temp password, the user doesn't need a link to a webpage since they already know how to...
  30. Re: MySQL database design: sharing data between 2 or more database

    In MySQL, schema and database are essentially synonymous so not like Oracle and I believe SQL Server. Nevertheless, the MySQL server can have multiple database/schema that are designed just like jmc...
  31. Replies
    8
    Views
    838

    Re: IIS max upload size

    Server got a Windows update last night?

    Check for clues or other issues in Event Viewer on both client and server.
  32. Thread: Forum for jobs

    by topshot
    Replies
    3
    Views
    3,334

    Re: Forum for jobs

    This should go in the Open Positions (Jobs) forum just below that one. I've alerted the mods to move it.
  33. Replies
    6
    Views
    1,411

    VS 2017 Re: Error in a vb.net app

    Apparently either your connection string is wrong (or can't be found?) or the database it is trying to connect to doesn't exist. That also appeared to be only the stack trace rather than the actual...
  34. VS 2017 Re: Datagridviews (one to many) eventually produce FK error

    If you place your cursor on UpdateAll in this code

    Me.TableAdapterManager.UpdateAll(Me.BaseLineDataSet)
    and press Shift+F2, what code appears? It should be calling Update on your TableAdapters....
  35. Replies
    14
    Views
    2,047

    Re: Database Security

    When it comes to PII, I would not recommend rolling your own security. Find a vendor that can host your store appropriately. You don't want to be on the hook for your site not being PCI compliant. Of...
  36. VS 2019 Re: Deployment of a simple program with database for standalone use

    Elaborate on what you mean by "hidden". Presumably you don't want them to change the data? Or you don't want them to even see it? The data should be encrypted?
  37. Replies
    10
    Views
    2,172

    Re: ReportViewer not working on client machine

    If you deployed the proper DLLs with your exe, what is the exact error message on the client PC?
  38. VS 2017 Re: Datagridview move cell value up/down

    Simply check for that condition first. If they select down and they are already on the bottom row, Exit Sub.


    It seems your code is modifying the DGV values, but that is not updating the...
  39. Replies
    14
    Views
    1,958

    VS 2017 Re: How can I let my app expire?

    I would never do that without payment in advance. If they have the source they are free to change it and potentially sell it themselves if they so choose, depending on what license you attach to it....
  40. Replies
    6
    Views
    5,224

    Re: Open Web Page in Full Screen

    Did you replace url in his example with the actual URL you want to open? So it would end up like this for example

    oShell.Run($"""C:\Program Files (x86)\Google\Chrome\Application\chrome.exe""...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width