Goto Page: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
Actual Results
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: JScript: HTTPrequest picture in binary?
- Subject: JScript: HTTPrequest picture in binary?
- Replies: 0
- Views: 18
Posted: November 19th, 2009, 7:11 am
Hi guys
Is it possible to use classic ASP (jscript or VBscript) to download a specific image from a URL in binary format?
It's for sending that particular picture as multipart/form-data later on.
thanks!
Is it possible to use classic ASP (jscript or VBscript) to download a specific image from a URL in binary format?
It's for sending that particular picture as multipart/form-data later on.
thanks!
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: Sending form data to email - It's not working
- Subject: Sending form data to email - It's not working
- Replies: 2
- Views: 82
Posted: October 30th, 2009, 1:50 am
"PHP requires an installed and working email system" quote from: http://www.w3schools.com/PHP/php_ref_mail.asp Have you looked at that? Before trying anything at all you should isolate the mail function. Just call it with strings: $send = mail("toaddress", "subject", &q...
- The_torst
- Forum: Flash and ActionScript Forum
- Topic: Extracting text from swf, command line?
- Subject: Extracting text from swf, command line?
- Replies: 0
- Views: 72
Posted: October 30th, 2009, 1:02 am
Hi guys I'm doing a project that requires me to - in an automated process - extract some numbers from a swf file. To me it sounds like I'll need a command line decompiler, that'll save the output somewhere; does anyone have a better idea, or a hint to some software that'll decompile from command lin...
- The_torst
- Forum: General Discussion
- Topic: Video Editing Freeware
- Subject: Video Editing Freeware
- Replies: 4
- Views: 490
- Subject: Video Editing Freeware
Posted: January 23rd, 2008, 6:31 am
My opinion:
I tried the first link to be an excellent source of information; and I hate to say it, but I catually found Windows Movie Maker to be the best free one §=D
I tried the first link to be an excellent source of information; and I hate to say it, but I catually found Windows Movie Maker to be the best free one §=D
- The_torst
- Forum: Website Design Forum
- Topic: Problem with redirecting pages
- Subject: Problem with redirecting pages
- Replies: 2
- Views: 293
- Subject: Problem with redirecting pages
Posted: January 23rd, 2008, 6:26 am
Hi Maria
It seems like cairnsunlimited are hosting your site, and URL redirecting into a proper virtual diretory; so http://www.pilotsrest.com.au/accomodation.htm f.ex. doesnøt really exist, cairnsunlimited just make it seem that way...
I'd say speak to cairnsunlimited about it!
It seems like cairnsunlimited are hosting your site, and URL redirecting into a proper virtual diretory; so http://www.pilotsrest.com.au/accomodation.htm f.ex. doesnøt really exist, cairnsunlimited just make it seem that way...
I'd say speak to cairnsunlimited about it!
- The_torst
- Forum: Website Design Forum
- Topic: IE6 and div.class:hover
- Subject: IE6 and div.class:hover
- Replies: 5
- Views: 596
- Subject: IE6 and div.class:hover
Posted: January 23rd, 2008, 6:16 am
Could be; or, your problem might be the background image property, and not the div.class:hover.
Two ways of finding out:
1) test with a #div_name:hover
2) test with an img tag in stead of using css background
If 1) works, it's a CSS issue; if 2) works, it's the background img
Two ways of finding out:
1) test with a #div_name:hover
2) test with an img tag in stead of using css background
If 1) works, it's a CSS issue; if 2) works, it's the background img
- The_torst
- Forum: Website Design Forum
- Topic: Google front page design - bad or good?
- Subject: Google front page design - bad or good?
- Replies: 19
- Views: 1284
Posted: January 21st, 2008, 6:02 am
I think it illustrates their image well: it's about searching and nothing else. Keep it simple!
google rocks
google rocks
- The_torst
- Forum: General Discussion
- Topic: joysticks for commodore/amiga game emulator
- Subject: joysticks for commodore/amiga game emulator
- Replies: 2
- Views: 342
Posted: November 21st, 2007, 9:47 am
Ok, thanks Jason - will do 
- The_torst
- Forum: General Discussion
- Topic: joysticks for commodore/amiga game emulator
- Subject: joysticks for commodore/amiga game emulator
- Replies: 2
- Views: 342
Posted: November 19th, 2007, 4:55 am
Hi guys I've got this commodore game emulator, that allows me to play the good ol' commodore games - one's got to love them graphics! :P My problem is that I can't get my joystick to work with it (it's a fairly new one with variable directions, as opposed to the old commodore/amiga ones with only on...
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: Change headers in JScript?
- Subject: Change headers in JScript?
- Replies: 2
- Views: 386
- Subject: Change headers in JScript?
Posted: May 9th, 2007, 1:05 am
right, thanks a lot
I thought it would add one and not change one, but it probably "redefines" it..
Gracias!
Gracias!
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: JavaScript doesn't work in IE [SOLVED]
- Subject: JavaScript doesn't work in IE [SOLVED]
- Replies: 5
- Views: 2863
Posted: May 7th, 2007, 11:46 pm
This will work in all browsers by the way.. 
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: JavaScript doesn't work in IE [SOLVED]
- Subject: JavaScript doesn't work in IE [SOLVED]
- Replies: 5
- Views: 2863
Posted: May 7th, 2007, 11:45 pm
You shouldn't use style="display...", but style="visibility: hidden;" and style="visibility: visible;" The switch in your js section would look like this: [code] switch(select_value) { case "create": join_section_obj.style.visibility =...
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: Change headers in JScript?
- Subject: Change headers in JScript?
- Replies: 2
- Views: 386
- Subject: Change headers in JScript?
Posted: May 7th, 2007, 11:30 pm
Hi guys,
I know that one can get HTTP headers by doing like so: Request.ServerVariables("URL"); // (for example)
But can one change those values? I'm thinking something like: Response.ServerVariables("URL") = "http://www.site.com/xx.asp";
thanks for reading!
I know that one can get HTTP headers by doing like so: Request.ServerVariables("URL"); // (for example)
But can one change those values? I'm thinking something like: Response.ServerVariables("URL") = "http://www.site.com/xx.asp";
thanks for reading!
- The_torst
- Forum: Website Design Forum
- Topic: Design issue: MAC Safari browser vs. all others
- Subject: Design issue: MAC Safari browser vs. all others
- Replies: 1
- Views: 350
Posted: April 26th, 2007, 1:03 am
Hi guys, I've got some dropdown boxes (aka <select> boxes), that need to have a specific height. I can't set the height by defining a 'height' property in the CSS, but I can change the font size, which also changes the height of the dropdowns in all browsers - except from Safari on Mac. How do...
- The_torst
- Forum: Programming / Scripting / Coding Forum
- Topic: What programming/scripting languages do you know?
- Subject: What programming/scripting languages do you know?
- Replies: 570
- Views: 14155
Posted: April 12th, 2007, 4:38 am
Perl
PHP
JScript
VBScript
C#
Javascript
PHP
JScript
VBScript
C#
Javascript

