What program can create this? [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
Hello I want to know what program can create something like this?
Business cards editor
I already tried searching in google but couldn't find nothing or dind't know how to search for it. Any help would be appreciated.
I AM NOT TRYING TO STEAL CODE OR COPY AND PASTE CODE. HAD SOME NEGATIVE VOTES EARLIER FOR ASKING FOR SOME TUTORIALS. PLEASE I JUST NEED SOME HELP
I came to this website to ask because didn't know where else to go thank you.

Right click on the application in the browser you'll see it's written with adobe flash

Related

Open HTML page in browser [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have used this before but I cannot find the URL anymore and I was hoping someone might know.
There is a url you can input in Chrome (I have not used this on any other browsers so I don't know if it works on others) That will open a blank page and allow you to type HTML and then allow you to 'run' the code to see what it looks like.
I am aware of the chrome extensions but those are not a viable option.
Okay so you're refering to data:text/html, <html contenteditable>
I found the same article on Lifehacker.
I don't know about running the code however.
There’s quite a few:
http://tinkerbin.com/
http://tinker.io/
http://jsfiddle.net
http://dabblet.com
http://cssdesk.com
http://jsbin.com
All of these allow for what you're asking.
Yes, jsfiddle is one option:
http://www.jsfiddle.net
Hope that answers
I went back to digging and remembered I found it on the lifehacks site. I altered my Google search and found it once more.
The command is data:text/html,
It isn't a web site just a simple html page.

A program to edit html/css website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking to edit a simple html/css template into something that I want.
My only problem is that I'm not good enough with html/css to be able to layout everything fine regardless of the screen size and browser.
So I was wondering what is a good program which can help he edit this html.
I was thinking something that kind of takes the html and css as input and I can just delete certain elements or add things and it automatically creates the correct html for it.
Any Suggestions?
(I don't mind if its paid or free)
Dreamweaver is good.
You could also use Firebug in Firefox and see what the html does and delete the html from a simple html editor program.

Is there a way to "view the code" of a MS Access file? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I know it's crazy thing to think about but asking never hurts! I'v been always curious to know if there's any way to somehow view the code for MS Access like we can for Internet Explorer by selecting a "View Source"?
Specifically I'm super intrigued to know the Filtering feature. Thanks all!
Access is not open source last I knew, you could look at the code for Calligra Kexi, which is an OSS alternative to Access, they will presumably have filtering functionality.
The code can be found at http://community.kde.org/Calligra/Building#Getting_the_Source_Code

ASP Classic simple image upload [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Improve this question
I need to be able to upload images to a folder on a server using Asp classic and then enter its location into a database.
Everything Ive found has been pages and pages of code that I dont understand.
Does anyone know anywhere there is a tutorial on simple uploads?
thanks
If you're talking about the freeaspupload class file then you don't need to understand it, you just upload it to your server as is, include it with the include file directive where relevant, then follow the instructions here.
http://www.freeaspupload.net/freeaspupload/documentation.asp.
This question may also help
How to Insert Record and Upload file using the FreeASPUpload Script
Alternatively, look at paid for third party components like Persits ASP upload.

How to show users the code of a website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to make a series of projects where I have users edit content of a website, but I'd like to show them the code that's being edited in real time. Similar to jsFiddle, or more similar to the way you can edit code in Tumblr themes. However, I don't want them to be able to edit any of the code, just see it.
Any ideas, tools, languages, etc, I could use for this?
Thank you!
Found an interesting way to do it, by pushing the HTML into a TextArea element, the entities will automatically be decoded:
var escape = document.createElement('textarea');
function escapeHTML(html) {
escape.innerHTML = html;
return escape.innerHTML;
}
document.write(escapeHTML('<html>'+document.documentElement.innerHTML+'</html>'));
http://jsfiddle.net/n25tD/
You may also find the contenteditable attribute interesting for teaching them.