202 Posted Topics

Member Avatar for Xantipius
Member Avatar for chaimkes

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.

Member Avatar for MidiMagic
0
131
Member Avatar for LeNenne

Use `Left$` to get the substring, starting from the first character, with a length specified by you.

Member Avatar for LeNenne
0
132
Member Avatar for IIM

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.

Member Avatar for <M/>
0
199
Member Avatar for NardCake

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 …

Member Avatar for jwenting
0
466
Member Avatar for bophana1

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)

Member Avatar for bophana1
0
188
Member Avatar for somjit{}

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 …

Member Avatar for javanoob101
0
150
Member Avatar for huang0521

You're gonna check each character one by one if it is in fact a digit.

Member Avatar for deceptikon
0
214
Member Avatar for major_lost
Member Avatar for eli_mjomba
Member Avatar for nithyananthanaiker

`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.

Member Avatar for scudzilla
0
199
Member Avatar for Papa_Don

^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?

Member Avatar for Papa_Don
0
418
Member Avatar for Aurax

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.

Member Avatar for Reverend Jim
0
538
Member Avatar for Papa_Don

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 …

Member Avatar for Papa_Don
0
159
Member Avatar for shanki himanshu

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?

Member Avatar for shanki himanshu
0
137
Member Avatar for krishjain99
Member Avatar for QVeen72
0
231
Member Avatar for hirenpatel53

How about using javascript? [here](http://www.quackit.com/html/codes/html_popup_window_code.cfm)

Member Avatar for scudzilla
0
243
Member Avatar for wilen

Use desc with order by to get a descending table `select num_of_votes from tblCouncilors order by num_of_votes desc`

Member Avatar for wilen
0
188
Member Avatar for ndeniche

'She's my cousin.' 'This won't hurt a bit.' 'Five more minutes.' 'I'm telling the truth.'

Member Avatar for chrishea
0
1K
Member Avatar for bhavna04

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 …

Member Avatar for Reverend Jim
-1
265
Member Avatar for arohideep13

The most recent game I spent a lot of time on was Shaiya. Now, I just started playing Diablo 3.

Member Avatar for Bob Hensley
0
296
Member Avatar for nitin1

I'm guessing 7, provided that each horse run at constant speed for every race, and no timers are used.

Member Avatar for chris.stout
0
283
Member Avatar for silvercats
Member Avatar for ingeborgdot@yah

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 …

Member Avatar for scudzilla
0
126
Member Avatar for mel.holmes.948

By not available, do you mean they are not visible in explorer, or visible but inaccessible?

Member Avatar for mel.holmes.948
0
185
Member Avatar for remixedcat
Member Avatar for Swith

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.

Member Avatar for pritaeas
0
1K
Member Avatar for king03

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.

Member Avatar for Momerath
0
80
Member Avatar for mayank.dyl
Member Avatar for zachattack05
Member Avatar for M.Waqas Aslam
Member Avatar for adam_k
Member Avatar for Dani
0
435
Member Avatar for drizzydrake

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 …

Member Avatar for scudzilla
0
2K
Member Avatar for Dudearoo
Member Avatar for bleedi

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?

Member Avatar for Momerath
0
252
Member Avatar for Azmah

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?

Member Avatar for Arandora
0
468
Member Avatar for Khodz
Member Avatar for JorgeM
0
203
Member Avatar for javanoclue
Member Avatar for shandow

Well, you could assign each VM to its own ethernet adapter interface in the host OS, and bridge them to simulate a connection.

Member Avatar for suley04
0
384
Member Avatar for Michael_SB

[This](http://mikemstech.blogspot.com/2011/12/troubleshooting-0x0000007a.html) could be useful.

Member Avatar for Michael_SB
0
423
Member Avatar for abhishekagrawal
Member Avatar for TrustyTony
0
213
Member Avatar for el33t
Member Avatar for hwoarang69

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*/ …

Member Avatar for scudzilla
0
124
Member Avatar for Ancient Dragon

Probably because that last post was deleted by a mod, but the last post link was not updated.

Member Avatar for Dani
0
149
Member Avatar for complete
Member Avatar for manchurianCEO
Member Avatar for Johannady2
Member Avatar for Johannady2

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 …

Member Avatar for Johannady2
0
182
Member Avatar for hwoarang69

To remove the garbage, put lines 17 to 19 of nullptr's previous post in an if statement with condition j < len

Member Avatar for Vish0203
0
6K
Member Avatar for harinath_2007
Member Avatar for JorgeM
0
172

The End.