-
Replied To a Post in gcc vs code blocks with itoa
Second thought. A new student didn't include stdlib so no itoa(). Read http://www.cplusplus.com/reference/cstdlib/itoa/ -
Began Watching gcc vs code blocks with itoa
My understanding of code blocks is that it uses gcc. So I am curious why gcc allows you to have a function called itoa, but code blocks does not let … -
Replied To a Post in gcc vs code blocks with itoa
Idea. The source for itoa is on the web so why not make a function from the source? -
Began Watching Windows Photo Gallery-like Program:
Hello! I recently installed windows vista on a old laptop, and i saw that it comes with a program called Windows photo gallery. Is there any way to make a … -
Replied To a Post in Windows Photo Gallery-like Program:
Why not look into open source viewers? [Example search here.](https://www.google.com/search?q=Windows+Photo+Gallery&ie=utf-8&oe=utf-8#q=Windows+Photo+Gallery+open+source) -
Began Watching Cosmos - Windows-Like GUI
Hello! How would you make an Operating System with COSMOS? Heres what I want: * A boot screen, showing a progress bar with the current OS loading status * A … -
Replied To a Post in Cosmos - Windows-Like GUI
Since there are already OSes out there I tend to write apps or solutions that I learn from or generate income. I think you need to read a prior comment … -
Began Watching Factory Reset Windows 7 Asus Laptop
Hello. I need to do a factory reset on my lappy. Its an Asus A550C. I've tried Restarting then pressing F9 which goes to Windows Boot Manager, the only option … -
Replied To a Post in Factory Reset Windows 7 Asus Laptop
This sounds as if the factory restore system is gone. I'm running into laptops that came with 8, someone installed 7 and left the now unsuspecting laptop owner with a … -
Replied To a Post in how to insert data from an Excel spreadsheet into a table in a mysql db
Sorry but if you post incorrect details, folk may give incorrect answers. Next time copy and paste to avoid this issue. I offered what I saw, but it appears that … -
Gave Reputation to Reverend Jim in Changing a string variable value to another string value
Well, the OP tagged the article with PYTHON so I kinda wonder why you posted php code. -
Replied To a Post in Changing a string variable value to another string value
@Grib. Are you sure about that? phpfiddle said: FOUND 3 ERROR(S) AFFECTING 2 LINE(S) -------------------------------------------------------------------------------- 2 | ERROR | Missing file doc comment 2 | ERROR | Constants must be … -
Began Watching Changing a string variable value to another string value
How do I change string values in a variable? example: string = 'Hello' print(string) change string to 'Bye' <-- How do I do that? print(string) -
Replied To a Post in Changing a string variable value to another string value
Try this. <?php $string = 'Hello<br>'; print($string); $string = 'Bye<br>'; print($string); ?> You can test it at http://phpfiddle.org/ -
Began Watching extraction
how to select a project title? -
Replied To a Post in extraction
Frankly this should be done later on in the project. Let's say you were to create a thing. The thing has yet to be created and you wanted to name … -
Began Watching findWithinHorizon method to C#
I need to convert the findWithinHorizon method to C#, is there anything equivalent to this? -
Replied To a Post in findWithinHorizon method to C#
Nod to hericles here. Example code at https://msdn.microsoft.com/en-us/library/ms228595.aspx -
Gave Reputation to hericles in findWithinHorizon method to C#
Do you mean something like the Regex.Match() method? You intend to search a string for a pattern correct? -
Began Watching Cosmos GUI VS
Hello! Any ideas how to make a GUI using COSMOS. Im running it on Visual studio 2013 Community! -
Replied To a Post in Cosmos GUI VS
It appears others have done this. More at[ link.](https://www.google.com/search?q=GUI+using+COSMOS.&ie=utf-8&oe=utf-8) -
Began Watching Wait for process to finish
Hi Dw. I have a project that uses Process to marge some files, now because the merging can take quite sometime I've used BackgroundWork. The main problem I'm facing is … -
Replied To a Post in Wait for process to finish
While I have my suspicions I don't know your PC. Try finding what locked the file with ["handle." See link.](http://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file) -
Began Watching how to insert data from an Excel spreadsheet into a table in a mysql db
I'm using phpexcel , I created a script that so far it takes me an Excel spreadsheet and I put the field values in an array of associative arrays , … -
Replied To a Post in how to insert data from an Excel spreadsheet into a table in a mysql db
Let's check a basic thing. You claim the file name is "wall" but later on write "WALL". In almost every OS today those are not the same file. -
Began Watching Tesseract OCR modifying existing traineddata
Hi, I am working on tesseract OCR with my data set that only has upper case English alphabets and numbers. Is there a way to modify an existing traineddata file … -
Replied To a Post in Tesseract OCR modifying existing traineddata
Small world. I can't reveal much but we used Tesseract and filtered the output in our code. We never thought to ask Tesseract to do such a filter. -
Began Watching How do I find the port my modem is listening?
I am using my mobile phone as a modem throught Wi-Fi tethering in Android OS. How can I see the port number to which my modem is listening? i have … -
Replied To a Post in How do I find the port my modem is listening?
My bet is your phone is using its WiFi hotspot rather than a tether. As such the ports are more than one. Just like when you use a WiFi router … -
Replied To a Post in Update database with ajax, can't get radio or check boxes working on Safari
Sorry for the delay. The jsfiddle was to see if that worked in Safari. Also I see now you need someone to write or fix your code. You are dealing … -
Replied To a Post in Using Local SQL database
If code porting time is a factor I'd look again at MySQL. A student here wrote an unattended install routine into their C# app so if MySQL was not found … -
Began Watching Issue with WinRAR
Hi, 1. I downloaded a free trial version 3.7 of WinRAR. 2. When i tried to open the compressed files, i could not open it, and got the message" WinRAR: … -
Replied To a Post in Issue with WinRAR
Also, try 7zip. I used that last month on some rar thing. -
Replied To a Post in Update database with ajax, can't get radio or check boxes working on Safari
Does this jsfiddle work in Safari? It's a variation on a prior discussion. http://jsfiddle.net/0d30dww2/ -
Replied To a Post in Update database with ajax, can't get radio or check boxes working on Safari
@Dennis_8 Chrome was very recently updated but here's the passage that I think needs another reading from that link. "Doesn't fire an input event when (un)checking a checkbox or radio … -
Began Watching Need a good learning path for encryption programming on a mobile device
Hi, Daniweb, it's been a while. I'm looking to do a mobile ssh-client (well, not quite a full client) that stores sensitive login information encrypted by a pattern-lock. However, I … -
Replied To a Post in Need a good learning path for encryption programming on a mobile device
I think you need to be clearer about your needs here. Encrypting what your app needs to remember is well done and a bottomless pit. https://software.intel.com/en-us/android/articles/sample-code-data-encryption-application and dozens more examples … -
Began Watching Update database with ajax, can't get radio or check boxes working on Safari
I was trying to use some code I found on here, but I can't get it to work.. Original question: https://www.daniweb.com/programming/web-development/threads/374722/update-database-with-ajax-and-with-different-input-names The code mostly works great for me, so thanks … -
Replied To a Post in Update database with ajax, can't get radio or check boxes working on Safari
Double check this for me. Read http://caniuse.com/#feat=input-event Is it broke in Chrome too? -
Began Watching Using Local SQL database
My project uses local sql database. I tried the app on a non development machine for first time. Got a message saying it was downloading required files, sql 2008 express, … -
Replied To a Post in Using Local SQL database
I think you didn't do anything wrong. However if I were to consider a lite SQL I'd consider OTM (other than Microsoft) SQL solutions like MySQL (still looking over MariaDB) … -
Replied To a Post in Manipulating sound on button click
Found a better prior discussion on engine sound generation. http://gamedev.stackexchange.com/a/3344 -
Began Watching Serial Com Socket for transferring files
I am trying to build a program for transferring files to an arduino project with an attached sd card. I have some code, it does some interesting stuff, but it's … -
Replied To a Post in Serial Com Socket for transferring files
Did you try Zmodem? https://www.google.com/#q=raspberry+pi+zmodem seems to say it's been done. -
Gave Reputation to mike_2000_17 in About compiler warnings. Why do folk ignore or turn them off?
> But I suppose this will never happen again in future missions. I wish... I know from good sources that this kind of thing happens again and again about a … -
Began Watching Hosting
will really love to know more about hosting a network and creating a security to it. -
Replied To a Post in Hosting
I have to ask. What is "hosting a network"? I've heard of hosting websites and such, but hosting a network needs to be expanded on. -
Began Watching Function MS Access Compact & Repair not working
I have a database that I use in VB. As records update there is a lot of useless info in there because access doesn't reuse the same spots. So that … -
Replied To a Post in Function MS Access Compact & Repair not working
Given the time since you asked this at http://dba.stackexchange.com/questions/110767/ms-access-2007-2010-compact-repair-not-working and other sites, it may be time to think over if Access is the right database for you. What did that … -
Began Watching Manipulating sound on button click
Hello everyone, im thinking how to make car engine sound on button click... my idea is when i click the button to be the same as you click on the …
The End.