-
Replied To a Post in [urgent] help with code here?
Please share the code as it is. Could be a simple thing. -
Began Watching [urgent help!]how to display this diamond using recursion
void diamond(int n); // where n is the number of stars in the middle row. You can assume that n is odd. (You can change the prototype of the function … -
Replied To a Post in [urgent help!]how to display this diamond using recursion
Why not solve it by any means? It's a problem to be solved, not homework, right? -
Began Watching Galaxy Tab 3 blackout/not charging
Hi, can anybody help me to figure out my blackout Tab 3. The battery is okey but it's black out. Thanks -
Replied To a Post in Galaxy Tab 3 blackout/not charging
Sadly this is usually the end for tablets. Since it's dead you can watch/find many of the Samsung Tablet disassembly videos and try one thing. Unplug the battery for a … -
Replied To a Post in Visual Studio crashes
Next up? Another user account, run as admin, XP. and now I recall an over reaching antivirus shutdown a coworker's VS setup. https://www.google.com/search?hl=en&as_q=run+visual+studio+as+administrator -
Began Watching Visual Studio crashes
Hi My vs stopped working everytime i click datagridview Probelem Signature: Problem Event Name: CLR20r3 PS 01:devenv.exe PS 02:10.0.30319.1 PS 03:4ba1fab3 PS 04:System.Drawing PS 05:4.0.0.0 PS 06:4ba1e086 PS 07:49 PS … -
Replied To a Post in Visual Studio crashes
I have not experienced that one but if I did I might try the reset noted at https://social.msdn.microsoft.com/forums/vstudio/en-US/abcb54bb-5490-48ab-a961-f2c7f64331a3/visual-studio-startup-error-clr20r3 Other causes appear to be XP, Fonts, and region/language settings. -
Began Watching New Battery for Dell latitude d830 - Search recommendable providers
Hello, since my dell latitude d830 battery is now completely wide, I am looking for a replacement. Although Google spits out several things really seriously not seem to me to some … -
Replied To a Post in New Battery for Dell latitude d830 - Search recommendable providers
I am of 2 minds on laptop battery replacements. 1. If it's for work or the fretful/fearful you get it from Dell. Done. 2. If you are not placing it … -
Replied To a Post in pre-populating <input type='file' with default
I've never found it possible to edit with assurity forms I don't "own." That is, to fill out forms, I must have them to test again my app(s). As to … -
Began Watching pre-populating <input type='file' with default
OK, All I find all over the web is that this can't be done... What I am looking for is a functional alternative. I have a form that a client … -
Replied To a Post in pre-populating <input type='file' with default
Think it over. There are web forms all around you. You can have them fill that out and on your web server do the form edit/filling and create a file … -
Replied To a Post in understanding .mkv files
Yes. Oh, I forgot to add my WDTV Live plays the .ISO just like the DVD player plays the DVD. So rip, toss on the network drive and play with … -
Began Watching Toshiba L770 Power Problem?
My Toshiba L770 Satellite Laptop does not power up, no LEDs lit when power adapter is plugged in. Power adapter producing 19.4 volts. Opened up laptop and got 19.4 volts … -
Replied To a Post in Toshiba L770 Power Problem?
Try a continuity test without the power adapter. Do the circuit trace ring out from/to the power jack pins? If not, the jack may have broke. -
Began Watching understanding .mkv files
There's a few things I'm confused about when it comes to the .mkv file format. It's the file format I use for my media server for several reasons. I'm told … -
Replied To a Post in understanding .mkv files
Container as in a box or bucket you put stuff into. I've taken to just making an .ISO of the full up DVD since with VLC Player it works just … -
Replied To a Post in How to set lines limit in richtextbox
@Reverend Jim. My bet is their spec is incomplete. That is they are thinking display lines and not ENTER terminated lines. satyam_1 needs to elaborate. -
Replied To a Post in RTC battery is low.
I understand that. Many folk never had the need for such a thing. OK, many of the RTC batteries like the common CR2032 are held in with a spring. I've … -
Began Watching RTC battery is low.
About 3 days ago. My laptop started behaving strangely (I'm on it, right now). I let it fall couple of times, but that was really some time ago about 3 … -
Replied To a Post in RTC battery is low.
Time to move the game up a notch. Bring out your Volt meter and tell me how many Volts the RTC battery is and the model battery. I don't see … -
Replied To a Post in How to set lines limit in richtextbox
Satyam, I read your requirements a few times but came away that they were not complete. I might make a bet you didn't really mean to disable input once the … -
Replied To a Post in Generate a 3-number random number, along with a DDMMYYYY value prefixed
That's fine lordrt and shows why so much code is buggy. Bad specs. Go with the sequence or off the web solution but at least you know it's designed to … -
Began Watching Generate a 3-number random number, along with a DDMMYYYY value prefixed
Hi Anyone can pls help me with a unique random number generator of length 3, prefixed with values from DDMMYYYY (e.g. for today's date 25062015001)? -
Replied To a Post in Generate a 3-number random number, along with a DDMMYYYY value prefixed
Back to the person who wrote this spec. They didn't reveal how many they needed in a day so with 0 to 999 possible values, not only is there that … -
Began Watching How I got this output?
int main() { unsigned int i=65000; while ( i++ != 0 ); printf("%d",i); return 0; } The output for this program is 1 can anyone explain me how I got … -
Replied To a Post in How I got this output?
Looks simple. You used a post increment. http://www.quora.com/What-is-the-difference-between-pre-increment-and-post-increment-operator-in-C++ So you get i for evaluation and later it's incremented so the i for evaluation is zero but as it's a post … -
Began Watching Compiling for processor directly vs for executable for OS
Can you use any compiler, assembler, etc to output code directly for the processor and not for an executable file specific to an OS? How do you determine if you … -
Replied To a Post in Compiling for processor directly vs for executable for OS
I think this is a simple no. For example if I compile my C# code the exe is not "machine code" entirely. The .net clr is fired up to run … -
Replied To a Post in Executing JavaScript Inside Gecko - vb.net
Long ago I had this app in VB. I used Microsoft's own Webbroswer control (noted at http://www.vbforums.com/showthread.php?384076-Webbrowser-Control-Tip-and-Examples ) but since that was so long ago I can only guess why … -
Began Watching Executing JavaScript Inside Gecko - vb.net
Hello everybody I'am trying to execute JavaScript in GeckoWebBrowser my code is : Hide Copy Code GeckoWebBrowser1.Navigate("javascript:void(" + TextBox2.Text.Replace("""", """""") + ")")` my JavaScript is : Hide Copy Code var … -
Replied To a Post in Executing JavaScript Inside Gecko - vb.net
I'm watching http://www.codeproject.com/Questions/1003536/vb-net-executing-JavaScript-in-GeckoWebBrowser to see if others notice this. -
Replied To a Post in How to set lines limit in richtextbox
I'd use the simpler Me.Text = first 12 lines of text (your code goes here) to strip the rest. Your specification can be taken many ways. I'm reading that they … -
Replied To a Post in Video Problem With Dell Inspiron 5748
Sorry to read that. My bet is they didn't test it thoroughly on 7. Let the buyers be crash testers. No excuse on their part but it sort of stuck … -
Began Watching Bits and bytes
i am new to c# i have been working on controlling a io card i have no issue writing to turn on / toggle / or get status turn on … -
Replied To a Post in Bits and bytes
There's usually more than that. That is, not only do you set the port value as you noted but if the pin is input, output, etc. Code alone isn't enough … -
Replied To a Post in Video Problem With Dell Inspiron 5748
http://www.notebookcheck.net/Dell-Inspiron-17-5748-Notebook-Review.122422.0.html and other sites notes it came with Windows 8. I'm left to guess if this is another repeat of the move from 8 to 7 and finding things broke. … -
Began Watching How to set lines limit in richtextbox
I have vb.net application and have a richtextbox.. I want set the lines limit to 12 and after 12 lines the user will not allow to enter text. How can … -
Replied To a Post in How to set lines limit in richtextbox
There are a few ways. Depending on the exact effect you want. My thought is the TextChanged event ( http://www.dotnetperls.com/textbox-vbnet ) would run a small Me.Text = 'code that strips … -
Replied To a Post in Software Developemnt
Here we have the elephant box for such things. And thankfully no problems with Amazon/other deliveries being stolen. I can't guess how this differs from today's solutions. There are plenty … -
Began Watching Software Developemnt
Good Morning All, I am looking to develope a new product and I am needing software, hardware and an app developed. I have no idea where to start and I … -
Replied To a Post in Software Developemnt
I've lost count of folk in that situation. Most just wither away because they are so afraid their idea would be stolen they can never talk to anyone about the … -
Replied To a Post in Portable Python 2.7 x86 and x64 Win/Mac/Linux interpreters needed.
Here, XP dropped out about 2 or so years back. Our clients were not running XP so it was an easy move. There are long discussions about that old OS, … -
Replied To a Post in Portable Python 2.7 x86 and x64 Win/Mac/Linux interpreters needed.
A few src folders should fix that. If they want to install some IDE and such, you could share what your favorites are. Or chuck the entire idea and put … -
Began Watching Portable Python 2.7 x86 and x64 Win/Mac/Linux interpreters needed.
been scouring google for nearly a month now trying to find something. now as the requirement grows, I need more help tryingto find something. Portable Python is what I'm currently … -
Replied To a Post in Portable Python 2.7 x86 and x64 Win/Mac/Linux interpreters needed.
Given the story, compile your script? Here's a link where they cover that for many OSes. Windows, Linux and others. http://stackoverflow.com/questions/12339671/how-to-compile-python-script-to-binary-executable Lots of interesting stuff there but for me is … -
Began Watching NINTEX?
Hi All, I was just wondering, does anyone know/use NINTEX? -
Replied To a Post in NINTEX?
It's a commercial product I saw at some trade show. They seem to offer demos, answer questions so if they are not answering your questions my bet is you should … -
Replied To a Post in G.723 file to WAV
Tell more. Up top you write "none have been able to decode" and now you write about "magic audio converter". If all you want is to automate this we've done …
The End.