|
Not to worry, anyway Google will have some examples of what you need.
Brad
Australian
- unknown PHP Developer on "Job Prospect"
Requirement: * Experience working with XML, XSL, XPath
Comment: and other things starting with X.
|
|
|
|
|
Don't cross post i thing some one has given answer to it in ASP forum you can delete this post
Thanks and Regards
Sandeep
If you want something you never had,
do something you have never done!
|
|
|
|
|
Hi all:
Is it possible that when I open a web page containing a checked checkbox it could be unchecked?
What I'm trying to accomplish is that I want to uncheck a checked checkbox, when the web page was opened. Specifically I want to uncheck the Yahoo toolbar install option when I open "http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash[^]"
I opened the web page using shellexecute(...).
Thanks
-- modified at 22:25 Thursday 22nd March, 2007
-- modified at 22:28 Thursday 22nd March, 2007
|
|
|
|
|
Please see my post below... and then please further define your question.
Brad
Australian
- Bradml on "MVP Status"
If this was posted in a programming board please rate my answer
|
|
|
|
|
Ok so are you trying to use a client application to uncheck a check box in a browser it opened?
Brad
Australian
- Me on "Public interest"
If you actually read this let me know.
|
|
|
|
|
Hi, You can do such "onload" you can call a function and in that function first you put a condition to check if the checkbox is checked than make it uncheck.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
These are some guidelines to get a good answer in this forum:
- Clearly state what you are trying to do, this means we will have a good background.
- State what exact language and platform you are using (eg. Operating System, Browser, Server Type....)
- Supply ALL error information you possibly can
- Supply all related code, but don't post your whole application.
- Mark where you suspect the problem to be, but include other code that may influence the problem.
- Surround code samples in "<pre> </pre>" tags as this makes it easier to read.
- Don't expect people to do the work for you, we are here to help you figure out solutions, not write them for you
- Use a descriptive subject, that way people who specialize in a certain area will read your post faster (eg "PHP socket problem", "IIS error message [404]")
- Finally use the right forum for the question, eg an ASP.net related problem will be answered a lot faster in the ASP.net forum
- And Last, Have fun
By following these guidelines you will find you have much better chance of receiving a quick and accurate solution to problems you are having.
Brad
Australian
- bryce on "Problems with Code Project"
*sigh* Maunder's been coding again...
|
|
|
|
|
i want to start process (like notepad) using java script
thank u.
|
|
|
|
|
You can't
Brad
Australian
- Bradml on "MVP Status"
If this was posted in a programming board please rate my answer
|
|
|
|
|
How Can I cath the duplicate values, Here is my code
Please help to store the value in a array
i have this code
function duplicate()
{
var arr = new Array()
for (i = 0; i < 26 ; i++)
{
// I want to pass this value to the array
Vals = document.getElementById("txtSeries" + i)
// if this value is already in the array, message error will prompt
alert('Value already exist')
break;
}
}
|
|
|
|
|
|
I picked the easiest solution, but How I can i pass/or insert the entered value in the script
document.getElementById("txtSeries" + i ).value
var myArray = new Array()
for (var i=0; i
|
|
|
|
|
Loop through the values that you have already put in the array to look if the value is already there before adding another value.
---
single minded; short sighted; long gone;
|
|
|
|
|
But I dont know in what part, Sorry Im very new in programming....
|
|
|
|
|
Hi there,
Can you tell me that how can I run .exe file through php. If you have any example please tell me.
Thanks in advance.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
You can't run exe's on a client through server side script, you'll need a Java applet or activeX or something along these lines.
|
|
|
|
|
|
Is the executable on the server or the client side?
Brad
Australian
- Me on "Public interest"
If you actually read this let me know.
|
|
|
|
|
It's client side
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Ok well in that case PHP cannot do that, it is a server side language and therefore cannot interact with the client's machine. What is it you are trying to achieve with the execution of the executable?
Brad
Australian
- peterchen on "Who has the worst keyboard"
Keyboard? Ha! I throw magnets over the RAM chips!
|
|
|
|
|
I want to execute Advertisement exe made in flash by php.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Can you quickly run me through the hole process so i can orient myself?
Brad
Australian
- unknown PHP Developer on "Job Prospect"
Requirement: * Experience working with XML, XSL, XPath
Comment: and other things starting with X.
|
|
|
|
|
I am creating a website, On which I want to put an exe as an advertisement on that website. I am using php to display that page and want to put the advertisement on that page by using php itself.
May you know that in vb.6 there is a command "shell" to execute the application like exe, Is there anyone in php??
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my question is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
vb and PHP are entirely different bags of chips. Can you email me a copy of the "exe" you have?
Brad
Australian
- Captain See Sharp on "Religion"
any half intelligent person can come to the conclusion that pink unicorns do not exist.
|
|
|
|
|
Hi,
If the flash animation is supposed to appear in the webpage, wouldn't it make more sense to have it as an SWF file, rather than an exe file, and just embed it in the page? That way you can have PHP construct the page as normal including the necessary markup for the animation.
Here is a good discussion of methods for embedding flash animations in pages: http://alistapart.com/articles/flashsatay[^]. The target of the article being to stick to standards, but I think it gives some good background.
This just be a case of having the flash advert saved as an SWF file. If the flash advert is an exe file, I'm sure there are tools about to convert it. If you created the flash advert, can you not save it as an SWF file? If the advert was supplied by a 3rd party, can they not re-supply as an SWF file?
This is all fine unless I'm missing something, oh, and the targeted client browsers don't have a flash plugin installed.
Cheers,
Jason.
-- modified at 5:50 Friday 23rd March, 2007
|
|
|
|