Search results for query: *

  1. U

    Serial port help

    At second glance your code doesn't include any thread creation or execution. Without being able to see the full problem it will be near impossible for me to help. I found this by googling. Hopefully it helps.
  2. U

    Serial port help

    It looks like your code is incomplete, can you show how txt1 is defined?
  3. U

    Question problem creating server.exe

    Perhaps if you describe the situation rather than your solution we can help you find the solve the problem... source code helps as well.
  4. U

    Question problem creating server.exe

    Please do not cross-post. Are you trying to build source into exe from the IDE or from within one of your projects? Is the source all in VB.NET that will be compiled? If you are looking to compile from one of your projects you can look into the VBCodeProvider namespace. This will allow you to...
  5. U

    Dynamic Class Object

    It sounds like you are looking to add a plugin framework to your application. Are the "projects" that you are talking about actually .NET projects or are they compiled class libraries (dll's)? I am not sure how I would handle .NET projects, but if you are using DLL's you could look into using...
  6. U

    Question USB Control

    Google is a wonderful thing: Google
  7. U

    synchronizing folders

    Another possible solution is to use the System.IO.FileSystemWatcher and maintain a single Dictionary(Of String, Integer) where the key is the path that changed and the value is sort of enumerated (0 - Created, 1 - Deleted, 2 - Renamed, etc). If you ran that as a Service that uses configurable...
  8. U

    Resolved Problem with System.Diagnostics.Process.GetProcesses

    Solved! I found the problem... I guess I made incorrect assumptions about the For statement. It seems that VB.NET was storing the return value of Me.dictRunning.Count in a temporary local variable rather than re-evaluating it each time (possibly to enhance performance). The solution was to...
  9. U

    Need help with program for small business

    I created a general Point of Sale (POS) software in VB6 which was designed for Video Rental stores however it is currently used in production in Restaurants similar to your example. In my POS application I allowed unlimited levels (theoretically) of ListView items which were configurable...
  10. U

    Remote Desktop

    I have to respectfully disagree with the answers to your question. I have personally built a remote desktop like application (which supported RDP as well as other similar protocols) using VB.NET so to say that FTP is the "only real working solution" is far fetched. FTP is slow any unrealistic in...
  11. U

    Resolved Problem with System.Diagnostics.Process.GetProcesses

    I am fairly new to VB.NET (but have vast professional experience with several other languages) and am completely new to these forums (so please don't burn me if I posted in the wrong place). I have run into a rather odd quirk with System.Diagnostics.Process.GetProcesses. I have a sample...
Back
Top