Search:
Type: Posts; User: Peter Swinkels
Search:
Search took 0.04 seconds; generated 40 minute(s) ago.
-
That is entirely true, and I would encourage people to listen to both sides of the argument and to stay respectful. The last thing I want to be responsbile for is discouraging pro-Trump posts even...
-
If it really has to do with education levels, your words I am curious about the education of pro Trump people. I am not that highly educated myself, high school only. I already had strong doubts...
-
Vb6 is a decent language for its time and is decent enough for 32-bit applications. Proper usage of API's and extensions will compensate for the language's age. Having said that, C# is a much more up...
-
I just browsed through this thread and read a few posts. Am I right in assuming most posters here are not a huge fan of Trump? Personally I never cared for him and after his baseless claims of fraud...
-
Perhaps you should mark this thread as resolved. That option should be available to you in the "Thread Tools" menu bar at the top of this thread.
-
I am afraid I have no idea what you mean. I took another look at your code and could you tell me what external components you're using here:
Private wa As cWebArchive
Private WithEvents WS As...
-
Hi, a few comments:
1. You might want to use more descriptive variable names.
2. I also see states being referenced and compared with numbers. There should be enumerations where such numbers are...
-
EDIT:
Ignore this thread. I found a workable solution.
Hi,
At the moment I am updating an older project of mine and a coding technique I used finally made its limits apparent. Let me try to...
-
Hi jmcilhinney,
Thank you for your quick reply. I am afraid I am stuck with custom LZW code if there is no native support then. You see, the code I posted must read and write files meant for usage...
-
Hi,
I have a question about the System.IO.Compression namespace:
A while back I wrote my own custom vb.net code for the purpose of compressing and decompressing data using the LZW algorithm...
-
1. https://stackoverflow.com/questions/109931/multithreading-in-visual-basic-6-0
2-4. https://stackoverflow.com/questions/2690656/vb6-game-development
I think your best bet would be investigating...
-
Hi mohmag. Welcome to the forum!
I never heard of RainMeter, is this what you mean:...
-
As far I know you would have to find some way of the interacting with the client machine running in your virual machine. Whether that could be done and how depends on the virtualization software you...
-
Csharp is almost identical to vb.net. Here is a converter:https://converter.telerik.com. Try reworking the code I linked to earlier, okay? Otherwise someone more knowledgeable about this topic might...
-
Given how quickly things change, there is only so much you can do to make your code future proof. But hey, the 16 year old code works, right?
-
You’re welcome. Yes, it is old. Perhaps it could be updated?
-
Hi,
Do these help: https://www.codeproject.com/Questions/448236/Monitoring-Network-Traffic, and https://www.vbforums.com/showthread.php?642645-RESOLVED-Monitor-Internet-Traffic?
Perhaps you...
-
https://stackoverflow.com/questions/14376605/computer-shutdown-event-vb-net -> http://vbcity.com/forums/t/84431.aspx
-
Hi famores, welcome to the forum!
You provided very little information. Could you explain what you are trying to do with those certificates and show any code involved in dealing with those?
...
-
Good to hear! Did you mark the thread as resolved? And you’re welcome btw?
-
innww,
A quick Google search told me there are several ways to go about converting PDF files to .txt files....
-
What is the error message’s text?
-
What kind of error? There are many similar questions with as many different answers. Try Googling "vb.net prevent texbox from losing focus".
-
Old habits die hard... C# is structurally similar to vb.net but has a less intuitive (IMHO) syntax. Anyone who really wants to try something mind bendingly different should try writing what you would...
-
At this moment I can think of no better answer than to suggest this tutorial: https://www.tutorialspoint.com/vb.net/vb.net_regular_expressions.htm.
-
Hello, it is hard for me tell what exactly your question is. Do you mean you can't detect certain packages with WireShark or is this dection issue with your vb.net program?
-
Just a quick tip:
In "'myList(0)(1) = """ you could replace the "(0)" bit with the .First method. You need to import the System.Linq namespace though. Same goes for the accessing the last item in...
-
-
Not enough info. Could you please provide the relevant code?
-
Perhaps you could post the relevant code or has the issue been fixed by now?
-
Hi Hagar, welcome to the forum!
Personally I wouldn't recommend using another program's installer to install something unless there was absolutely no other way. To be honest I am not surprised...
-
Hello K@g}{, welcome to the forum!
While I don't have an answer to your specific problem I noticed two things:
1. "On Error Resume Next" immediately followed by "On Error GoTo 0" - since the...
-
@dday9 - perhaps you should look into how older BASICs work even if they are long since obsolete. It may help you understand antiquated code such as what you had to deal with here. @tg: LOL! Sounds...
-
I see. @DreamWeave: has the error been fixed now?
-
Just a guess, but try adding the “New” keyword in front of “ HttpUtility.ParseQueryString”. What happens then?
-
Instead of fixating on the details of how that code supposedly works, can someone provide a description of what it actually is supposed to do in plain english? Looks like it would have been nice if...
-
The original code in the op does not look like it should work. The s variable is declared as an integer ("%") but treated like a string: ("s = s + Mid$(field, i, 1)").
And I could be wrong but...
-
I suppose it's the most work, but migrating to a more modern programming environment could work miracles... The other suggestions are good and I have nothing else to add. :-)
-
Fair enough, Option Strict should be turned on and I personally don't like Option Infer. I also recommend disabling warnings and using Option Explicit.
-
Do you mean this line: Dim queryString = HttpUtility.ParseQueryString(String.Empty) ? If so, do you know you're asking for an empty string to be parsed? Please post the code in your button and mark...
|
Click Here to Expand Forum to Full Width
|