-
Began Watching How do I remove bad backlinks from my website? Is there any free tool?
Hello Everyone, I am in need of help. I want to know how do I remove bad backlinks from website. Can anyone please suggest me any free tool which can … -
Replied To a Post in How do I remove bad backlinks from my website? Is there any free tool?
Wait? Your website has bad links? Why not edit them out? -
Began Watching PHP undefined error
I'm getting two errors detailed below: Notice: Undefined index: username in C:\wamp\www\member.php on line 8 Call Stack # Time Memory Function Location 1 0.0006 131808 {main}( ) ...\member.php:0 ( ! … -
Replied To a Post in PHP undefined error
Remember to check priors on this one. I read http://stackoverflow.com/questions/14115904/post-not-working-notice-undefined-index-username and find I'd add more checks. -
Began Watching Input a key stroke
Option explicit Dim WshShell Set WshShell = CreateObject("Wscript.Shell") WshShell.Run "Batch_operation.bat" wshshell.XXXX "y" wshshell.XXXX "{ENTER}" What should I put in the "XXXX" to make the program enter "Y" and then move … -
Replied To a Post in Input a key stroke
Maybe SendKeys. Documented at https://technet.microsoft.com/en-us/library/ee156592.aspx -
Gave Reputation to JamesCherrill in Need a Method That Will Split a Java File Into Lines By {, }, ;, and //
> In other words how would your new formatter know the end of a comment? It would have to make guesses such as "Hmm, a // might end when I … -
Replied To a Post in Need a Method That Will Split a Java File Into Lines By {, }, ;, and //
> If a line has multiple braces like }}, I want one of them to go onto the next line. If a line has multiple semicolons like output.println(); data.close();, I … -
Replied To a Post in Need a Method That Will Split a Java File Into Lines By {, }, ;, and //
So, in psuedocode. Set up your indent variables, start with 0 or what you what. Until EOF - read a line, strip leading and trailing white space. (tab, spaces). - … -
Began Watching Need a Method That Will Split a Java File Into Lines By {, }, ;, and //
Hi, this was my previous post https://www.daniweb.com/programming/software-development/threads/504670/need-help-with-a-java-program-that-will-indent-code-from-another-java-file#post2204763 I heard it would make more sense if I put all the code on one line and worked on it from there. I … -
Replied To a Post in Need a Method That Will Split a Java File Into Lines By {, }, ;, and //
I think I could break your formatter with a comment since what if you ran into a commented out line of code and your new line breaker enabled that code. … -
Gave Reputation to CimmerianX in Windows 10 Updates
So on the metered connection in win 10, the 'metered' setting has to be set on each network interface IIRC. If you only set it for ethernet, your wifi would … -
Replied To a Post in Word 2007 Save option causes error and reboot of Windows XP
You don't have to remove all add ins. Word's Safe Mode, not to be confused with the OS's safe mode would do this as a test run. I can't tell … -
Began Watching Need Help With a Java Program That Will Indent Code From Another Java File
Hi, so I'm trying to create a Java program that will read a Java file that is incorrectly formated and properly indent and format it. This is what I have … -
Replied To a Post in Need Help With a Java Program That Will Indent Code From Another Java File
This looks to me to be another "Pretty Printer" or code beautifier. There are now many [old discussions](http://stackoverflow.com/questions/996646/stand-alone-java-code-formatter-beautifier-pretty-printer) about this plus open source efforts. Sometimes it's best to use a … -
Replied To a Post in How I do scan invoice to SQL server 2008 or to excel file or .txt
Well bass, a -1 for asking you a few questions and sharing a few ways? If that's a question in the comments, that belongs in a reply. If that was … -
Marked Solved Status for About compiler warnings. Why do folk ignore or turn them off?
One of the best tips I learned long ago was to turn on all warnings and error messages from the compiler or development system. Yet last week, once again a … -
Marked Solved Status for VW software. Integrity. Or the loss thereof.
I didn't see anyone bring up how VW and other companies have lost their integrity. We know those that code "bad things" may lack a moral compass but when I've … -
Marked Solved Status for 21st post bug in forum.
On a longer discussion the 21st post went to page 2. Yet I could not navigate to the 2nd page or get to the 21st post. Making another post fixed … -
Replied To a Post in LOGICAL GATES
Well, int a is not inta. Why not keep the same variable? -
Replied To a Post in Windows 10 Updates
"Verrry interesting." Will have to try this here and see what happens. BTW, I'm using the local logins too. -
Replied To a Post in LOGICAL GATES
You didn't state your problem but well, read what you wrote and it's going to get downvoted. Maybe this is some homework assignment but you left out all the details … -
Began Watching Windows 10 Updates
I'm at the cottage for the summer. Out here I have a metered connection and I try to keep under 3 gig per month (or I have to pay extra). … -
Replied To a Post in Windows 10 Updates
At the risk of other folks ire, I have been around Windows since 1.0. My first program was on a GE 210 so I too am an old dog. OK, … -
Began Watching LOGICAL GATES
I HAVE THIS PROBLEM AND I DON'T KNOW HOW TO SOLVE IT -
Replied To a Post in LOGICAL GATES
The schematic you supplied is not a problem but a design. Your post is getting downvoted for many reasons so next time take time to tell what you need to … -
Began Watching how i create notification system in jsp
how i create notification system in jsp -
Replied To a Post in how i create notification system in jsp
Step 1 would be for you to design this or write your software design document. Many new programmers forget to sketch out what they want and proceed to code first. … -
Replied To a Post in Word 2007 Save option causes error and reboot of Windows XP
PS. I didn't complain you were running XP. I guess you get that from others, not me. in fact I wrote I wasn't going to discuss that. -
Replied To a Post in Word 2007 Save option causes error and reboot of Windows XP
About Safe Mode. It's a shame that Word's Safe Mode wasn't called something else. So there is Windows Safe Mode and Word Safe Mode. I know it's terrible but when … -
Replied To a Post in Word 2007 Save option causes error and reboot of Windows XP
Reinstalling Word does not remove addins and settings. I guess the -1 is because you are upset about something. But did you try what I asked? Yes we could start … -
Began Watching Send SMS Fast
Hi, I have many records in my table minimum 3000k records. When I select SMS Page , it has two ajax pages, for calculation, So, the SMS Page is taking … -
Replied To a Post in Send SMS Fast
Small world. OK, the time to do the SMS is pretty fixed in time so to say almost double the speed you need to get a second SMS gateway. You … -
Began Watching How to know if user clicks on certain area using Pygame
Recently I started coding a simple Game Engine in Python, but for some reason I couldn't remember how to get Pygame to recognize you clicked on a certain area. No … -
Replied To a Post in How to know if user clicks on certain area using Pygame
Actually most I know have code that fires on click, get the coords with [pygame.mouse.get_pos()](http://www.pygame.org/docs/ref/mouse.html) and then you can do what you will with that info. -
Began Watching php write file on other server/pc
Hi I have a php application which runs on an IIS Server and I want to create/append a file on an other server or PC Can I do it if … -
Replied To a Post in php write file on other server/pc
In short, why not try it and find out? My thought is this would be prone to breakage. And nothing I'd think to put into something I'd want to work … -
Began Watching Word 2007 Save option causes error and reboot of Windows XP
Here is the order of what happened. Some of it seems weird: 1. I downloaded a web page with Firefox Save Page As. The site should be trustwoirthy (a local … -
Replied To a Post in Word 2007 Save option causes error and reboot of Windows XP
While the XP discussions are legendary and folk that don't keep install media and keys may not know what troubles they are getting into, so let's not discuss XP or … -
Gave Reputation to JamesCherrill in Netbeans (Java class) Help
Seriously? You want us to help with an error in your code, but you don't tell us what the code is or what the error message is? We're not mind … -
Gave Reputation to VIPER5646 in 'Format' is a type and cannot be used as an expression.
thanks rproffitt the links helped. Here is my new format lblCustDate.Text = Now().ToString("MMM-dd-yy") -
Replied To a Post in Understanding Javascript Arrays
To me this still reads as a path and filename issue. Code looks fine but I don't know your file system or test rig. -
Began Watching Editing more than one record
Help me resolve that problem I want to edit all the records only that meets the condition. The problem I'm is that my codes bellow behaves as though there no … -
Replied To a Post in Editing more than one record
That's a mess to read but line 2 has this SELECT* that appears odd since I would have a space after SELECT. Why are you looping through records? SQL lets … -
Replied To a Post in Understanding Javascript Arrays
Matthew, If that's it, what I call such lookovers is "fresh eyes." There's nothing that looks blatently wrong with the code itself. So I had to step back and look … -
Began Watching Understanding Javascript Arrays
I am currently working on using Javascript arrays to swap images for rollover buttons. This was working perfectly for one build about a week ago. That is, I am working … -
Replied To a Post in Understanding Javascript Arrays
Let me start reading at line 10. OK, line 10 has this path of "/images/" and then in line 13 you write path + "images/black_menu2.jpg" So that strikes me as … -
Gave Reputation to RudyM in Switch error.
So a down-vote for my not knowing this was a duplicate posting? -
Began Watching awk command gives "Argument too long" error.
Hello everyone, I am trying to merge large number of CSV files into one, using the following "awk" command, but if I increase the number of files more than 10,000, … -
Replied To a Post in awk command gives "Argument too long" error.
To me this sounds like our old question of how to merge that many files. While I won't ask why not cat it, I would break it up a little …
The End.