That's the catch to using DW -- you have to upgrade it with each new version to take advantage of major updates.
My company is convinced it's the greatest thing since ice cream sundaes, and since they don't mind footing the bill for CS4 I can tell you first-hand Adobe has really improved it...
As vacunita pointed out you have syntactical errors in the code you submitted and a couple more that vacunita missed.
However, I've made the code corrections and added the line for the redirect where i think you want it to be, although I'm not clear on what you are trying to do exactly. If...
Use your HOSTS file (no extenstion) located in:
C:\Windows\system32\drivers\etc
For example, to block the domain foo.bar.baz add a line to your HOSTS file like this:
127.0.0.1 foo.bar.baz
This should effectively block your system from accessing foo.bar.baz.
-a6m1n0
http://2130706433/
By using the XMLSocket object you can have real time two-way communication with an open socket server. The server is not your typical web server -- Flash binds to this server and can send or receive data from the server on-the-fly. The connection is 'open' and persistent until the client or...
I have VS 2008 Pro on the same workstation with Turbo Delphi Professional (Pascal only flavor of RAD Studio 2006).
Delphi pros...
1. Pre-existing, reusable code that doesn't cost thousands. Delphi has an incredible out-of-the-box drag-and-drop component suite as well as over ten years worth...
The loadVars object requires responses to be formatted like a GET request to a PHP script.
myscript.php?firstName=bob&lastName=smith
So you need to use PHP to format the response sent to loadVars.
Here are some extended examples.
myVar1=Some%20URL%20Encoded%20value%20for%20flash&...
For the past six months or so I have become very fond of writing wrapper classes for just about everything I do in PHP. I find that I prefer to use static methods and properties most of the time.
Now I'm starting to wonder what are the advantages or disadvantages to using static methods and...
Hi,
Use the following function to return an array with all image src attribute values from a string of html.
function GetImageSource($strHtml)
{
$strRegExp = '/<img (?:.*?)src=(?:"|\'){1}(.*?)(?:"|\'){1}/is';
$arrMatches = array();
$bolMatched =...
Look in C:\Documents and Settings\[logged in user]. Look for a "regNNN.txt" file, where N equals a number. (Mine is reg735.txt). Rename the file and trying activating again. I had this same problem when updating to Turbo Delphi Professional from the free Turbo Delphi. (Turbo Delphi is a language...
Hi Stretchwickster, when I was giving away stars I did notice the link on the right below each post "Check out the FAQ area for this forum" link and sure enough there was your FAQ. I did find the information useful, and thanks for pointing it out.
-a6m1n0
http://2130706433/
@harebrain - Nothing beats free. :)
@Duoas - I have D7 around here somewhere...I'll have to dig it up. I do remember being disappointed with the Help in Turbo/D2006 when I first installed -- and I continue to be. Is there a way to link the help facility of 2006 to D7? (Press F1 and get D7 Help...
I'm on Amazon.com and looking for Delphi books...there are a lot of books on Delphi.
I use Turbo Delphi Professional (CodeGear Developer Studio 2006) but I have a litle experience with Delphi 7 and lazarus/fpc2.
Are there any books in particular that helped you learn Delphi/Turbo Pascal...
To elaborate, I just followed the directions from section 34. How can I "de-secure" a database? of the following document located here.
-a6m1n0
127*(256)^3+0*(256)^2+0*(256)^1+1
Couldn't you just create the login form in the program, and if the login is successful create the other forms from the login unit, and If unsuccessful show a friendly error and repeat the login process?
-a6m1n0
127*(256)^3+0*(256)^2+0*(256)^1+1
When you state 'on-the-fly' that implies some type of automated solution. You can use VBScript to add an IP address to the restricted IP list in Directory Security, but your post doesn't make it clear how how you plan to implement the automation.
-a6m1n0
http://127*(256)^3+0*(256)^2+0*(256)^1+1/
I add this to the top of PHP scripts that require debugging:
<?php
error_reporting(E_ALL|E_STRICT);
?>
Also if you haven't already, configure you error log setting in php.ini and give the guest web user read/write/modify on the log file.
-a6m1n0
http://127*(256)^3+0*(256)^2+0*(256)^1+1/
Assigns the last four characters of the 'host_name' server variable to variable 'domainExtension'.
$domainExtension = substr(
(string)$_SERVER['HTTP_HOST'],
strlen((string)$_SERVER['HTTP_HOST'])-4,
4
);
Note: You might want to do some double-checking on the validity of the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.