- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 17
- Posts with Upvotes
- 16
- Upvoting Members
- 6
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
not much really - just trying to figure this stuff out
- Interests
- Painting (fine art and yes even Home Improvement), reading, anime and manga, and freelancing in Graphic…
- PC Specs
- Older Mac G5 (right before Intel) - not much really, need to get back to upgrading now that school is…
91 Posted Topics
Re: Try using a DataTemplate for the ListBoxItems - this will allow you to format how you want each of the items to appear in the ListBox. For this example I will make the following assumptions - you can correct if necessary (which it probably will be since I don't know … | |
Re: If you are still looking, I have been trying out MicrosoftWebMatrix. It's pretty good and has some intellisense built it (not a lot, but some). It's also free. | |
Re: One thing I have done before is use a tag attribute as a way to hover and keep the previous information: Note, this is a very quick idea for some code, so I haven't tried it $(".portfolio_thumbs").hover(function(){ var imgSrc = $(this).attr("tag"); $(this).attr("src","images/portfolio/"+imgSrc+"Color.jpg"); }, function () { $(this).attr("src","images/portfolio/"+imgSrc+".jpg"); }); }); with … | |
Re: Here is an old (pre using JQuery) script that reads in a .csv file to make a table out of it - from a forum question a long long time ago. The XML route would be much easier to format and maintain in the long run. It's similar to the … | |
Re: When you remember what a record player is, and owned one that also came with a cassette player. And thought that was the best stereo ever. | |
Re: Ok, I am going to own up to just really getting into C#, so I am hoping that I am not too far off. I am reading this where when you click on the textbox itself - you want it to clear? If you are wanting to clear the textbox … | |
Re: Posted this snippet in a similar post - not tidy but helped me get the information into the html file. This is the forum post I made earlier [url]http://www.daniweb.com/forums/thread315732.html[/url] and below is the code snippet that I found worked for me [CODE] if (window.XMLHttpRequest) { //for firefox, opera and safari … | |
Re: I hope I am understanding how your current project is set up correctly - if not, please correct me. You have one box with a space for one user control to be shown at a time (or that is the size you want the window to be), with the user … | |
Re: I attached a screenshot from Shutterstock's website. If you want a good size image for print, look at the dpi they list by the image. I put a red box around the one I would choose for print purposes. It is always better to have a larger image and size … | |
Re: Basically, as all the previous posts have stated - it's common sense when protecting your Mac, and you can find some good utilities to help and prevent. If you can... BACKUP your system... for me, I have a separate hard drive for my apps and my files. This way if … | |
Re: Well, I have had good luck with changing the colorspace to RGB before resizing and then going back to the index colorspace when dealing with images. It gives me a much smoother transition and less of the jagged bitmapping (since it works with a larger color gamut (range) and isn't … | |
Re: The tutorial I have the link to, shows the setting as true (the following code is from the link below) [CODE] // Create a function that will receive data sent from the server ajaxRequest.onreadystatechange = function(){ if(ajaxRequest.readyState == 4){ document.myForm.time.value = ajaxRequest.responseText; } } ajaxRequest.open("GET", "serverTime.php", true); ajaxRequest.send(null); [/CODE] [URL="http://www.tizag.com/ajaxTutorial/ajaxxmlhttprequest.php"]http://www.tizag.com/ajaxTutorial/ajaxxmlhttprequest.php[/URL] … | |
Re: You would have a much easier time with tabs using JQuery and the JQuery UI library. [URL="http://jquery.com/"]Main link for JQuery library[/URL] [URL="http://jqueryui.com/"]Link for the JQuery UI library[/URL] [URL="http://jqueryui.com/demos/tabs/"]An example of the JQuery UI tabs[/URL] They also provide documentation and code samples to use the widgets. | |
Re: From what I understand after reading the post, you are wanting to add new div's into the container div each time a visitor clicks for a new calculation. [CODE] function add() { var j=1; var v1 =document.getElementById('ttlBoxes').value; var v2 =document.getElementById('boxno').value; var d1=parseInt(document.getElementById('ttlBoxes').value); var d2=parseInt(document.getElementById('boxno').value); if(v1!=""&& v2!="") { if(d2<d1) { //This … | |
Re: Rough draft possibility for the page layout code. CSS Code [CODE] body{ margin:0px; } header, nav, footer, article, section { display:block; } section { background-color:#80B59D; width:90%; color:white; margin-bottom:25px; padding:10px; } nav { float:right; width:25%; padding:10px; } #login{ background-color:#E2E3E3; border-style:solid; border-width:thin; padding:10px; text-decoration:none; border-color:#E2E3E3; margin-top:30px; margin-bottom:100px; } article { float:left; width:74%; … | |
Re: Well, first - have you identified your target market? Who you want to respond and visit your site? This will help you narrow down where you send your Press Releases and help you determine the subject matter that will interest them the most. What are you trying to accomplish? What … | |
Re: Well, looking from the other side of the web - understanding the development side is definitely something that helps in the design of the website. But, I highly recommend classes in design, understanding color theory, using programs such as PhotoShop to help with image creation and optimization. This way you … | |
Re: You can try JQuery UI, they have a dialog box that acts pretty similar to what you seem to be asking about. [url]http://jqueryui.com/demos/dialog/[/url] The only other way would be to have a hidden div and once they click on the image, it would change the visibility of the div. Here … | |
Re: Ok, I have a long Javascript that worked for me to load the xml [CODE] if (window.XMLHttpRequest) { //for firefox, opera and safari browswers var xmlHttp = new XMLHttpRequest(); } if (typeof XMLHttpRequest == "undefined") XMLHttpRequest = function () { try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {} try … | |
Re: on line 20 you have [CODE]</menu>[/CODE] instead of [CODE]</div>[/CODE] Firefox is a tad bit more forgiving on the syntax. So, IE thinks the menu div has not ended yet. | |
Re: Don't underestimate understanding how Microsoft Applications/Systems run and being able to trouble shoot them. Many macs can run Windows now, so there are more systems running both MacOS and Windows. Understanding both makes you much more marketable to a company and even for the company if they outsource you. One … | |
![]() | Re: Ok, reading this question - it sounds like he may have Time Capsule set up on another computer and is trying to connect to it. If that is the case - did he tell Time Capsule that his laptop was one of the systems he wanted backed up? Also - … ![]() |
Re: here is a thread where I used that idea to create a table using javascript [url]http://www.daniweb.com/forums/thread328414.html[/url] look up "document.createElement" on [url]www.w3schools.com[/url] - and google as well. It helps explain the syntax much better. | |
Re: You can check if they have entered a valid number and that is about it. It would be irresponsible to expect customers to provide credit card information through an unsecured form. For complete validation, check with your hosting company if they can recommend a secure service or if they can … | |
Re: It reads like you have the button set up to "submit" instead of "post" - try changing it and see if it helps any. | |
Re: The way you are showing your variables looks more like an array than simply declaring variables. You can do this two ways: first as heilo was showing - using the array; [CODE] var name = []; name [0] = ("tom",12); name [1] = ("dick",11); name [2] = ("harry",10); function writeName1(){ … | |
Re: OK, I stripped a lot of the style coding out, and its a very basic table with a border so I could see where the text was and how it was falling into the table cells. I know I am decaffeinated when I have to copy/paste from w3schools cause I … | |
Re: Ok, I admit this one got my curiosity up and I wanted to see if I could figure it out - and the first part I had to do was take it apart and do one part at a time: First.. looked at your code where it stated it was … | |
Re: Looking at what you want to accomplish - it seems rather ambitious for your very first web page design, especially if you are coding it yourself. My first suggestion would be to simplify the background - not only will it be easier to code, but help the page download faster. … | |
Re: Try this: 1. Convert text to paths - it's easier than tracing the font. 2. Group all of the items together - if you are just selecting them all and then using the 3D effect it will transform each element independently. If you have a group (under the menu item … | |
Re: Your best, and least expensive, resource will be [url]www.w3schools.com[/url]. This way you can keep up with the most current code without purchasing a book. | |
Re: Looking at your code, just the number of divs you have defined is extremely confusing and difficult to sift through. After viewing the code in a browser - there are definitely small divs that don't need to be in there. What does the banner look like with the images? Since … | |
Re: Which div does this snippet belong to? I see several different defined hovers for different areas in your css. | |
Re: Can you post a copy of your code so we can see it? | |
Re: Downloaded your code and then screen shotted the output. The colors are the same, used the eye dropper tool in photoshop to double check. Compare them with another color and see how they look compared to the same color. When looking at my monitor the bottom did look to be … | |
Re: cybob43, do you have any other usb devices connected to the computer when you start up? If so - then try to reboot with only the keyboard and mouse connected. What happens when you only have the mouse and keyboard connected (if you are doing that now... no worries. Just … | |
Re: I admit - I have not tried this service yet but it came highly recommended by a co-worker who sends out monthly email newsletters/ads. [url]http://www.mailchimp.com/[/url] | |
Re: do you have a link where we could see the page in question, or perhaps post the code? | |
Re: are you saving as a png-8 or a png-24 when using the "Save for web" option? The png-24 will look much better. | |
Re: Looking at your code (using the suggestion Airshow made with Firefox and the Error Console) - there was one error stating that "hs is not defined" from your main html page. Looking at the page - I was wondering about this piece of code [CODE] <!-- 2) Optionally override the … | |
Re: Could be a minor typo in this line [CODE] <iframe scr="pureEditor.html" width="100%" height="500"> [/CODE] where scr should be src | |
Re: Ok, the code is going to be long - but I have had a similar project and this is what worked for me. A sample page (of just this code being used) can be seen at [url]http://www.roundboxdesign.com/table_test/xmltry/XML_test.html[/url] Currently it just separates the xml file to show either dealers or distributors … | |
Re: Have you tried booting from the OS disk to see if it will start up? If so, it would eliminate the power from being an issue. | |
Re: I do like the image in logo one, but not the font. The font in logo 2 is much better. | |
Re: I prefer to use an external style sheet, and have one for Internet Explorer and one for the other browsers. [CODE] <link rel="stylesheet" type="text/css" media="screen, projection" href="otherbrowsers.css" /> <!--[if IE]> <link rel="stylesheet" type="text/css" media="screen, projection" href="explorer.css" /> <![endif]--> [/CODE] This way helps me when I am correcting any css styles, … | |
Re: When I read the question if it "is art" I still cringe since what I am expecting to find is that the designer feels they should be given carte blanche over the design and not take the concerns of the business into account. I have dealt with many graphic designers, … | |
Re: Unfortunately, no. Once the image is saved to a png file it no longer has the information on the font used. The image has been flattened and the text is no longer separate from the image. It has been rasterized, meaning the font outlines which are a vector/postscript have been … | |
Re: The POP account could be the issue according to the link below, it needs to be set up as an IMAP account. [url]http://mail.google.com/support/bin/answer.py?hl=en&answer=77663[/url] | |
Re: This isn't an instance of the code, so much as what is reading the code. Not to mention - if it is flagged as junk mail most (like mine) will not view the images at all. Also, some people may not want their email in HTML and have that viewing … | |
Re: I am about to post a low-tech way to start, get a pencil (you WILL need the eraser), paper and then start by sketching out how you want it to look. Keeping in mind that it should be simple to keep the code simple in order to learn. I still … |
The End.