Forum: Visual Basic 4 / 5 / 6 Feb 14th, 2009 |
| Replies: 2 Views: 713 Essentially what you want to do is create an array of images and hide them off the form to start.
Now on load or on push of a button simply run a rand() function and call to array image[x]
... |
Forum: PHP Apr 11th, 2008 |
| Replies: 2 Views: 738 Well your main problem here is trying to use javascript + php natively like this with frames.
I would look to convert this to ajax as it is much more flexible. Sort of middle ground for client vs.... |
Forum: Windows NT / 2000 / XP Apr 11th, 2008 |
| Replies: 2 Views: 746 You can boot off the XP disc and get into the recovery console and repair the registry this way. |
Forum: MySQL Apr 11th, 2008 |
| Replies: 4 Views: 1,186 Click the "Browse" tab and you should be able to modify it from there.
Or Click the small icon next to the table name.
To delete all items from a table you have two options.
Browse to the... |
Forum: HTML and CSS Mar 25th, 2008 |
| Replies: 3 Views: 787 Simple.
You keep calling:
class="title"
That will display the image as stated in your css.
background: url(/images/img04.gif) |
Forum: Visual Basic 4 / 5 / 6 Mar 24th, 2008 |
| Replies: 2 Views: 1,272 Store the database on:
\\yourserver\yoursahrename
Now make the adjustments in VB6 program to call the correct path.
Apply the correct permissions for your users to allow access to the db.
... |
Forum: *nix Software Mar 24th, 2008 |
| Replies: 1 Views: 1,349 This is kept in your php.ini
You should look it over and enable the features you require for your application. |
Forum: IT Professionals' Lounge Feb 26th, 2008 |
| Replies: 3 Views: 3,134 Try it like this:
ssh root@1.2.3.4.5 |
Forum: Geeks' Lounge Feb 26th, 2008 |
| Replies: 15 Views: 1,739 Thanks bud!
I take pride in my work. |
Forum: Geeks' Lounge Feb 22nd, 2008 |
| Replies: 15 Views: 1,739 Too many to list to be honest and my favorites required a NDA agreement so I 100% can't mention those....
The current company I work for had a really bad website and I scrapped it and redid the... |
Forum: Getting Started and Choosing a Distro Feb 22nd, 2008 |
| Replies: 4 Views: 1,311 I am getting a 403 error when trying to hit your image.
But it sounds like your using some sort of theme that changed the bg color |
Forum: VB.NET Feb 22nd, 2008 |
| Replies: 2 Views: 3,852 I don't like posting a link to another forum.
But this is a perfect solution/answer for you:
http://www.vbdotnetforums.com/showthread.php?t=12469 |
Forum: ASP Feb 22nd, 2008 |
| Replies: 10 Views: 2,250 Have you tried declaring these?
I have ran into some odd ball issues when comparing text field to integer.
Try setting both as integer then do your compare. |
Forum: PHP Feb 20th, 2008 |
| Replies: 4 Views: 503 Depends on your look up feature.
But general idea is:
<?
$user=$HTTP_SERVER_VARS["PHP_AUTH_USER"];
?>
Welcome back <b> <?= $user ?>, We have missed you!
<br><br> |
Forum: PHP Feb 20th, 2008 |
| Replies: 3 Views: 3,901 Like this:
$script = "tar -czf $backupdir/DATABASE-$dbname.tgz $backupdir/$dbname.sql";
$results = system($script,$retval);
echo "\n CREATE TAR FILE:\n $results\n RETURN VALUE: $retval\n";
... |
Forum: Windows NT / 2000 / XP Feb 19th, 2008 |
| Replies: 17 Views: 1,661 Boot from a WIndowsXP CD.
Enter setup mode.
Go to Recovery Console.
Run> chkdsk /f
And see it if it resolves any errors. |
Forum: Visual Basic 4 / 5 / 6 Feb 19th, 2008 |
| Replies: 11 Views: 1,483 Make sure that you define these variables integer based.
it might be doing a text comparison because of data type.
Store the variables into a temp var that is defined as integer and then run... |
Forum: Java Feb 14th, 2008 |
| Replies: 2 Views: 932 Save it in the table as binary and retrieve it as such using content type image/jpg. |
Forum: C++ Feb 14th, 2008 |
| Replies: 3 Views: 1,474 You can specify any delimiter you want.
Prototypes:
istream& getline (char* s, streamsize n);
istream& getline (char* s, streamsize n, char delim);
#include <iostream> |
Forum: C++ Feb 14th, 2008 |
| Replies: 11 Views: 1,477 Simple Free Solution would be PHP + Mysql.
Google for both.
You can run it on your home pc or on a server.
You want to store this in a DB vs. Flat Files.
It will allow to keep everything... |
Forum: Visual Basic 4 / 5 / 6 Jun 17th, 2005 |
| Replies: 9 Views: 21,759 I rest my case.... :cheesy: |
Forum: Visual Basic 4 / 5 / 6 Jun 14th, 2005 |
| Replies: 9 Views: 21,759 Why not just do this in sql? |
Forum: Visual Basic 4 / 5 / 6 Jun 13th, 2005 |
| Replies: 9 Views: 21,759 Ok First off:
http://www.microsoft.com/downloads/details.aspx?FamilyID=6C050FE3-C795-4B7D-B037-185D0506396C&displaylang=en
Second..
Add these librarys in your project
Microsoft Activex Data... |