202 Posted Topics
| |
Re: Try using an external microphone or temporarily mute the internal mic. I've had that problem and it turned out to be my internal mic causing it. Let us know the results. | |
Re: Use `Left$` to get the substring, starting from the first character, with a length specified by you. | |
Re: I, too, can't log in using my mobile (galaxy tab). The screen dims as if the log in box appeared, but I didn't even see the box and the screen lightened up again in a second anyway. | |
Re: After months of running Windows 8, I recently went back to 7. Somehow, I like 7 better than 8. What I liked about 8: -fast and light -good search speeds and results What I disliked about 8: -lackluster graphical design (IMO)... to be honest, I was sad when they stopped … | |
Re: Er, it's there. under "Tags: Click to add Tags..." It's a cropped image showing part of the taskbar. @OP you could try refreshing the [icon cache](http://support.microsoft.com/default.aspx?scid=kb;en-us;132668) | |
Re: USB keyboard? Any other USB device you've added recently? Have you tried another keyboard? Personally, I've experienced a similar situation before. It was when I connected both a keyboard and a bluetooth adapter to a 4 port USB hub. The adapter seemed hog the power offered by the single USB … | |
Re: You're gonna check each character one by one if it is in fact a digit. | |
Re: How about `If not IsNothing(sender) AndAlso ....`? | |
Re: Can you successfully ping external networks? Try pinging 8.8.8.8 or 4.2.2.2 | |
Re: `relations[]` is an array of double. `relations[i]` is just a double, not an array of double. It is, of course, not compatible to `double[8]` which is an array of double. | |
Re: ^That. And with ds being empty, the dgv would of course be blank. Correct me if I'm wrong, but shouldn't strings in the query be between single quotes? | |
Re: Sir Jim's example would be flagged as palindrome because the spaces are symmetrical. How about this one? "A nut for a jar of tuna". Without normalizing, it will not be flagged as one. | |
Re: 1) Yes, we define the search criteria. WHERE specifies conditions for the search. @lastName and @phone are parameters. au_lname like @lastName means that we are looking for records such that au_lname field is similar to whatever @lastName holds. AND phone like @phone, we are looking for records where phone field … | |
Re: What's the error? Something's wrong with my dev C compiler, so I can't even compile. And do you even need all those references? | |
Re: You're gonna have to show a bit more of your code. Particularly the lines above that. | |
Re: How about using javascript? [here](http://www.quackit.com/html/codes/html_popup_window_code.cfm) | |
Re: Use desc with order by to get a descending table `select num_of_votes from tblCouncilors order by num_of_votes desc` | |
Re: 'She's my cousin.' 'This won't hurt a bit.' 'Five more minutes.' 'I'm telling the truth.' | |
Re: Light 1 candle at both ends (assuming both ends have a wick exposed) and the other only at one end. Once the first candle burns out, 30 mins have passed and the second candle has 30 mins left. At that point, light the other end of the second candle. Problem … | |
Re: The most recent game I spent a lot of time on was Shaiya. Now, I just started playing Diablo 3. | |
Re: I'm guessing 7, provided that each horse run at constant speed for every race, and no timers are used. | |
Re: 32-64 bits each. Altogether 1KB. | |
![]() | Re: Technically, OEMs are not for sale. Only bundled with new hardware. However, many stores ignore this condition. Microsoft doesn't seem to care as well. If you can find a store selling OEM, go for it. It's much cheaper than retail. It's key is locked to your mobo, but you can … |
Re: By not available, do you mean they are not visible in explorer, or visible but inaccessible? | |
Re: I'm currently using Windows 8 professional. | |
Re: As mentioned, some solutions require guesses. In such situations, there will be a number of (logically related) cells that can have more than one value. Once your program encounters this, it will infinitely loop between those cells because it cannot find a single value for each cell. | |
Re: At the start of the program? You want the textbox to display an amount? Place the code in a main method, the form class constructor, or a method the constructor calls, not in the textchanged method. If that's not what you mean, please explain more. | |
| |
Re: Have you tried using an SQL trigger? | |
| |
Re: Well, if the first subnet starts at 16.0.0.0, and it ends at 16.0.127.255, then it means the second subnet starts at 16.0.128.0. Then you get the pattern: for every subnet, add 128 to the third octet. You can add manually until the 500th subnet, or come up with a formula … | |
Re: Capital W is **57h** or **87d**. Small w is 77h or 119d. | |
Re: In that picture, could you identify the indices of each vertex? And could you identify how you assign indices to each vertex for a division index of n? | |
Re: I have a friend that experienced having a malware that forces windows explorer to report that his hard drive is almost full, although only half of it is used. Maybe you're experiencing the same? ![]() | |
Re: Have you tried using the motherboard's on board graphics chipset (if your board has one)? | |
Re: Add the bin folder of the jdk into the path variable. | |
Re: Well, you could assign each VM to its own ethernet adapter interface in the host OS, and bridge them to simulate a connection. | |
Re: [This](http://mikemstech.blogspot.com/2011/12/troubleshooting-0x0000007a.html) could be useful. | |
Re: At lines 8 and 10, use %lf (small L) instead of %f. OR, line 6, change double to float. | |
Re: This section of your code: if(left_var[b] == 'x' && (left_var[b-1] != '+' || left_var[b-1] != '-')) { /*the second condition of this if statement is currently useless. for whatever value of left_var[b-1], it will always be unequal to EITHER '+' or '-' I'm assuming you intended to use && here*/ … | |
Re: Probably because that last post was deleted by a mod, but the last post link was not updated. | |
Re: You'll have to boot the 64 bit DVD and clean install.(Backup your files first) | |
Re: Any other info you see in the BSOD? | |
Re: How about using substring? | |
Re: at line 35: `System.out.println("" + firstletter1 + firstletter2 + firstletter3 + firstletter4 + firstletter5);` Also note that because of lines 23 to 27 of your code, all strings str1 to str5 will have the same value which is equal to the last string you input. Move those lines outside of … | |
Re: To remove the garbage, put lines 17 to 19 of nullptr's previous post in an if statement with condition j < len | |
Re: What VBox settings are recommended for Win 8? Win 8 is very slow when I use VBox. |
The End.