4,921 Posted Topics
Re: On my system (laptop - wireless) I can get that info under VB.NET 2017 by Imports System.Net.NetworkInformation Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click For Each nwi As NetworkInterface In NetworkInterface.GetAllNetworkInterfaces If nwi.OperationalStatus = OperationalStatus.Up Then If nwi.NetworkInterfaceType = NetworkInterfaceType.Wireless80211 Then Debug.WriteLine(nwi.Name & " … | |
Re: You could try doing net time \\servername /set to sync the time. | |
Re: Typically there is a Dell app which will tell you the battery health. You should find it on your taskbar. Right click and select `Dell Power Manager`. Some batteries also have a button which will indicate battery health when pressed via 1-5 LEDs. Dell power cables also have a `sense` … | |
Re: >What does all slots have to do with this error? Probably nothing so I removed it. | |
Re: >I get an error message when I used this code Then why not post the error message and identify the line that throws it? | |
Re: In an admin shell type cacls %temp% /G everyone:f `/G` replaces existing ACLs whereas `/E` edits (modifies) existing ACLs | |
Re: In the accounts settings (where you enter the connection info) there should be a **Test Connection** button. What happens when you click it? | |
Re: My only comment is that when you go to the home page all you see is a few random posts. In order to get an idea of what the site is about you have to click on the waffle and in my opinion that is not an obvious action. | |
Re: Computers usually come configured with several partition, to wit: 1. Recovery (not accessible through Windows) 1. Diagnostics (ditto) 1. C: (Windows/apps/user files) I've told family and friends that I will halp them maintain their computers as long as I can get at them before they are first used. Here is … | |
Re: And that "one" should not be VB6. A couple of approaches, all of which involve reading each line and **Split**ting on the space that separates each field. Create a SortedList where the key is the name and the value is an array of the remaining elements. Copy the names to … | |
Re: So, basically, you want us to do everything except the actual file I/O? What, exactly, will you learn if we do that? | |
Re: I have a Dodge Grand Caravan with separate temperature controls for driver/passenger. We go to the cottage at Shebandowan Lake for 4 months of the year and last spring, a week before leaving, the passenger side control stopped working. It was stuck on "heat" regardless of the dial position. Dodge … | |
Re: Try zipping it before you upload it. | |
Re: I installed it on Oct 3 but because I automatically take a differential image every morning I was able to roll it back out. | |
Re: 1. Yes 1. Yes 1. What one change would you most like to see at Daniweb.com? | |
Re: >You must... I don't, actually. | |
Re: Perhaps it's just me, but I couldn't make any sense of that explanation. | |
Re: That doesn't narrow it down much. Are you having a problem, don't know where to start? | |
Re: You might try [shedskin](https://code.google.com/archive/p/shedskin/) which I found in 5 seconds via google. | |
Re: Please read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules) and [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question). Pay special attention to the one that says **Do provide evidence of having done some work yourself if posting questions from school or work assignments** | |
Re: You beat me by 5 years. I turn 65 on Saturday. Any idea who the oldest (living) Daniweb member is? Dani should be able to query the database to find out. | |
Re: What messages/feedback are you getting to tell you what failed? | |
Re: Please read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules) and [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question). Pay special attention to the one that says **Do provide evidence of having done some work yourself if posting questions from school or work assignments** | |
Re: APL Pro: Extremely powerful syntax and rich set of primitive operators (80 or more) designed for mathematical manipulation. Con: The epitome of write-once, read-never coding. You can implement Conway's game of Life in one line. Powerful and concise syntax but I've never seen a language that approaches APLs ability to … | |
Re: Make sure you have only one anti-virus package running. You might also try disabling your anti-virus (temporarily) to see if that speeds things up. If that works then it is time to switch to another anti-virus. | |
Re: You can use `MessageBox`. There are 21 variations but the most basic is Dim result = MessageBox.Show("one or more lines of text") The value of `result` depends on how the box is closed. This, in turn, depends of which combination of buttons you specify. Check out the intellisense popup after … | |
Re: @vegaseat - As a long standing member you should know better than to reward lazy/bad behaviour. | |
Re: Based on the little information you provided, your code does exactly what it says it does. Of course, that's likely not what you wanted it to do. Perhaps if you provided a little more information like: 1. What is this code supposed to do 1. What is it actually doing … | |
Re: You've posted code with almost no indication (other than the thread title) of what it does. If your program does something interesting then please explain what it does and how to run it. A code snippet is usually posted to educate. Without comments it doesn't do that. | |
Re: Looks like homework to me. So far the only effort you have shown is copy/paste. Please read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules) and [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question). | |
Re: If you aren't looking for a home-grown file finder, or if you don't need it integrated with other software, I suggest you have a look at the free Everything Indexer from [voidtools](https://www.voidtools.com/). I gives you real-tme (vurtually) instant feedback on finding files and folders by name. | |
Re: What part are you having trouble with? | |
To all in the last week or so who received a private message from me consisting only of the phrase, `Noli Mentula`, I sincerely apologize. In the previous incarnation of Daniweb, sending a private message was considerably different than in the new version. I had assumed that a message would … | |
Re: Try using `\"([^\"]*)\"` as your regular expression. This will return matches on all double quoted strings. Using `[^\"]*` instead of `.*` ensures that each double quoted string is taken as a unit. | |
The day that Americans will decide if they want to step on the brakes or drive off the cliff. | |
Re: Can you provide more information? For example. you don't drag files onto a USB any more than you drag files onto a serial or parallel. You drag them onto a device attached to a USB interface. What type of device are you using? How are the files being displayed on … | |
Re: You are not even close to being done. 1. You only get input from the user once instead of within a loop 1. You do not need both `number` and `figure` according to your spec 1. Why are you doing a div and a mod? You should be doing do … | |
Re: This thread has been solved. Please start a new thread with an appropriate title and more detail than you provided here. | |
Re: While it's easy for a human to pick out the names by context, it's not so easy for code. How can you determine where the names end and the rest of the sentece begins? What constitutes a name? Is a name always a first name and a last name where … | |
Re: Are you sure you don't want `'sadasdsad','4'` instead of `'sadasdsad''4'`? | |
Re: As a first attempt I suggest one loop that steps through the original string char by char as well as a boolean that you can set to true or false depending on whether or not you are within a word. Set it to true if the char is a letter … | |
Re: I have a folder on my bookmark bar with shortcuts (filters disabled) to the main forums. Just disable the filter and save the URL. | |
Re: The easiest way would be to remove a question once it has been asked. | |
Re: And you posted this because.... Usually when someone is having a problem with their code they go to the trouble of describing the problem, including any error messages, etc., in other words, putting in a little effort. | |
Re: You'll have to create a list to hold all five numbers so that you can iterate over the list after the numbers have all been read in. When you iterate over the list you can, at that point, calculate and display how much each score differs from the average. | |
Remember when once upon a time all you had to do to start Windows in safe mode was go all Woody Woodpecker on the F8 key during boot? Well in Windows 10 it seems you have to do just a little more... 1. On the login screen click on the … | |
Re: Typically a hard drive on an OEM system has multiple partitions. Mine came with five partitions with only one (C:) user partition. You can safely reformat C, and if like me, you created a second user partition (D:) you can format that as well. If you format the entire HD … | |
Re: How does your thread title in any way relate to your question? | |
Re: How long does it take to walk from New York to Miami? It depends on how fast you walk and how determined you are to get there. How much you learn on the way depends on what you do on the journey. | |
Re: I couldn't help but notice that you don't ever check to see if the account has enough $$$ in it to satisfy the request. |
The End.