Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 47
Search took 0.09 seconds.
Search: Posts Made By: chris0
Forum: Geek News and Humour 10-19-2011, 04:33 PM
Replies: 2
Views: 1,207
Posted By chris0
this is a sad month for the tech. world C is...

this is a sad month for the tech. world

C is the core of everything in the computer world today...
Forum: PHP 10-19-2011, 04:22 PM
Replies: 3
Views: 236
Posted By chris0
netbeans is good for writing...

netbeans is good for writing php/html/javascript/sql scripts

visual studio is an ide for C# and VB.net ,
it is a very powerful tool that you can use to debug, and run the code line by line
Forum: Computer Programming 10-19-2011, 04:17 PM
Replies: 6
Resolved Vb 2010 bug?
Views: 542
Posted By chris0
looks like your program is not being 'built', its...

looks like your program is not being 'built', its just running from an old build

go to bin/debug or bin/release , and see the 'date modified' of the exe file in there

or

try to click "build"...
Forum: Career, job, and business ideas or advice 10-17-2011, 10:52 AM
Replies: 15
Views: 6,367
Posted By chris0
it depends on who will do it and their experience...

it depends on who will do it and their experience level, and how feature right the site will be

if you want a simple php without extensive use of java, then it could be around $2 or even less,
Forum: Computer/PC discussions 10-17-2011, 10:46 AM
Replies: 5
Views: 1,231
Posted By chris0
thanks for the input digibiz I guess 15" it...

thanks for the input digibiz

I guess 15" it is , mainly because the 14" costs more, and i am on a tight budget

but i'll consider getting a 10~12 inch later on for mobility if money allows
Forum: Computer Programming 10-17-2011, 10:44 AM
Replies: 5
Views: 805
Posted By chris0
use something like this site: ...

use something like this site:

http://howtostartprogramming.com/

i suggest you start with vb.net
Forum: Computer Programming 10-17-2011, 10:40 AM
Replies: 8
Views: 2,111
Posted By chris0
cycle through the data to get the selected...

cycle through the data to get the selected fields, something like this:


For i = 0 To DataGridView1.Rows.Count - 1
If DataGridView1.Rows(i).Cells("EMail").Selected Then
...
Forum: Computer/PC discussions 10-15-2011, 01:10 PM
Replies: 3
Views: 1,067
Posted By chris0
there are many programs that do that see top...

there are many programs that do that

see top 10 results from this search
http://www.google.com/search?q=program+to+save+all+website
Forum: General web building 10-15-2011, 01:03 PM
Replies: 7
Views: 1,408
Posted By chris0
you can not compare those 2, (as has been said by...

you can not compare those 2, (as has been said by many others before this post)

most work that needs php, will require some js on the side

js can be used with c#/php , and can be used with...
Forum: Geek News and Humour 10-15-2011, 12:52 PM
Replies: 9
Views: 2,363
Posted By chris0
put aside the overpriced products of apple, his...

put aside the overpriced products of apple, his contributions in the last 30 years to the tech world have changed it forever

I wonder what will apple do without him ..
Forum: Computer Programming 10-15-2011, 12:46 PM
Replies: 1
Views: 410
Posted By chris0
to load web pages , use curl ...

to load web pages , use curl

http://curl.haxx.se/
http://curl.haxx.se/libcurl/
http://curlpp.org/

to handle web page contents, use regex
Forum: Computer/PC discussions 10-07-2011, 05:58 PM
Replies: 11
Views: 5,193
Posted By chris0
there are paid for solutions ...

there are paid for solutions

http://www.google.com/search?q=PDF+to+word+on+Mac

if that doesnt work for you, you can always install something like vmware and have a copy of windows xp handy for...
Forum: PHP 10-07-2011, 05:32 PM
Replies: 5
Views: 386
Posted By chris0
simply see the code that is used to insert the...

simply see the code that is used to insert the values in the database, it will include the database connection and query, change the query to "SELECT" instead of "INSERT" , change the full syntax of...
Forum: PHP 10-07-2011, 05:29 PM
Replies: 5
Views: 391
Posted By chris0
an alternative would be to scrape google results...

an alternative would be to scrape google results and make your site display them, so you can handle the results as a middle man, and act on it
Forum: PHP 10-07-2011, 05:27 PM
Replies: 2
Views: 322
Posted By chris0
check mysql configuration file sometimes...

check mysql configuration file

sometimes mysql configuration file is restricted to only allow localhost connections, only from 127.0.0.1 , and will not even listen to connections coming to an ip...
Forum: PHP 10-05-2011, 10:55 PM
Replies: 1
Views: 437
Posted By chris0
try to echo __FILE__ ; maybe it could...

try to
echo __FILE__ ;

maybe it could shed some light

try using full paths, instead of just relative paths,
so instead of using ./folder

find the current file path, and put a full path...
Forum: PHP 10-03-2011, 05:12 PM
Replies: 8
Views: 482
Posted By chris0
as far as i know, the web browser do not display...

as far as i know, the web browser do not display any part of the page untill it received the full file.

and the load images and js files
Forum: PHP 10-03-2011, 05:06 PM
Replies: 9
Views: 1,262
Posted By chris0
i second that, you can verify by sending header...

i second that,
you can verify by sending header location only and see the result,
also you should have the header location only, and make header('Status: 404 Not Found'); on the /404 page only

...
Forum: PHP 10-03-2011, 04:57 PM
Replies: 18
Views: 719
Posted By chris0
try /[^0-9a-zA-Z][A-Z]+[^0-9a-zA-Z]/ ...

try
/[^0-9a-zA-Z][A-Z]+[^0-9a-zA-Z]/
/([^0-9a-zA-Z])([A-Z]+)([^0-9a-zA-Z])/

with
http://www.php.net/manual/en/function.preg-replace-callback.php
Forum: PHP 10-03-2011, 04:31 PM
Replies: 5
Views: 1,264
Posted By chris0
try echoing something custom of utf8 encoding...

try echoing something custom of utf8 encoding that didn't come from curl,
to try to come closer where the problem is coming from.
Forum: PHP 10-03-2011, 12:43 AM
Replies: 5
Views: 503
Posted By chris0
Most likely HTML 5 should be fully backwords...

Most likely HTML 5 should be fully backwords compatable, since doin otherwise would break many many sites
Forum: PHP 10-03-2011, 12:41 AM
Replies: 6
Views: 432
Posted By chris0
<?php // create a new cURL resource $ch =...

<?php
// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER,...
Forum: JavaScript programming 10-03-2011, 12:38 AM
Replies: 7
Views: 377
Posted By chris0
this simplejson.loads should do the...

this

simplejson.loads

should do the opposite of

simplejson.dumps
Forum: JavaScript programming 10-03-2011, 12:33 AM
Replies: 3
Views: 293
Posted By chris0
http://webteacher.com/javascript/

http://webteacher.com/javascript/
Forum: PHP 10-01-2011, 08:42 PM
Replies: 5
Views: 1,264
Posted By chris0
Try adding <meta http-equiv="content-type"...

Try adding
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
at the top of your
<head>...</head>
Showing results 1 to 25 of 47

 
Forum Jump

All times are GMT +1. The time now is 10:41 PM.