Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
83% Quality Score
Upvotes Received
17
Posts with Upvotes
16
Upvoting Members
6
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
8 Commented Posts
~60.1K People Reached
About Me

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

Member Avatar for Behseini

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 …

Member Avatar for macgurl70
0
4K
Member Avatar for Deepo

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.

Member Avatar for macgurl70
0
199
Member Avatar for turpentyne

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 …

Member Avatar for macgurl70
0
249
Member Avatar for FALL3N

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 …

Member Avatar for L0st
0
18K
Member Avatar for GrimJack

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.

Member Avatar for vinnitro
1
3K
Member Avatar for mikeoabban

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 …

Member Avatar for macgurl70
0
138
Member Avatar for johndoe444

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 …

Member Avatar for bharathivkmani
0
12K
Member Avatar for Cameronsmith63

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 …

Member Avatar for Cameronsmith63
0
142
Member Avatar for suavedesign

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 …

Member Avatar for macgurl70
0
2K
Member Avatar for Aneesha

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 …

Member Avatar for jsepeta
0
907
Member Avatar for piers

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 …

Member Avatar for neotutorials
0
157
Member Avatar for prem2

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] …

Member Avatar for macgurl70
0
2K
Member Avatar for newbie14

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.

Member Avatar for macgurl70
0
81
Member Avatar for manu555

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 …

Member Avatar for manu555
0
178
Member Avatar for kz13

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%; …

Member Avatar for macgurl70
0
170
Member Avatar for mayurms

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 …

Member Avatar for pgmco
0
237
Member Avatar for babafemi

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 …

Member Avatar for goldybedi
0
353
Member Avatar for tomjrjones

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 …

Member Avatar for rosy12
0
115
Member Avatar for Pinchanzee

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 …

Member Avatar for Pinchanzee
0
179
Member Avatar for hsmukunda

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.

Member Avatar for hsmukunda
0
123
Member Avatar for siddarudhak96

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 …

Member Avatar for ducksoup
0
173
Member Avatar for W1ND0W5

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 - …

Member Avatar for W1ND0W5
0
173
Member Avatar for Tcll

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.

Member Avatar for Tcll
0
147
Member Avatar for sreekiran

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 …

Member Avatar for macgurl70
0
87
Member Avatar for sivasuit

It reads like you have the button set up to "submit" instead of "post" - try changing it and see if it helps any.

Member Avatar for macgurl70
0
84
Member Avatar for vishalkhialani

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(){ …

Member Avatar for macgurl70
0
210
Member Avatar for LogicWeb

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 …

Member Avatar for Kraai
0
150
Member Avatar for silkyheart

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 …

Member Avatar for macgurl70
0
427
Member Avatar for imKEN

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. …

Member Avatar for macgurl70
0
135
Member Avatar for minimogul

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 …

Member Avatar for minimogul
0
103
Member Avatar for chamnab

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.

Member Avatar for Arkinder
0
60
Member Avatar for programmer12

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 …

Member Avatar for Arkinder
0
117
Member Avatar for chrishea

Which div does this snippet belong to? I see several different defined hovers for different areas in your css.

Member Avatar for chrishea
0
168
Member Avatar for MartinRinehart
Member Avatar for Jordian

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 …

Member Avatar for macgurl70
0
165
Member Avatar for jdbrighter

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 …

Member Avatar for macgurl70
0
596
Member Avatar for jmcg

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]

Member Avatar for macgurl70
0
70
Member Avatar for mushget

do you have a link where we could see the page in question, or perhaps post the code?

Member Avatar for macgurl70
0
94
Member Avatar for minimogul

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.

Member Avatar for macgurl70
0
139
Member Avatar for aizel

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 …

Member Avatar for Airshow
0
291
Member Avatar for ErlendHL

Could be a minor typo in this line [CODE] <iframe scr="pureEditor.html" width="100%" height="500"> [/CODE] where scr should be src

Member Avatar for ErlendHL
0
76
Member Avatar for Spycat

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 …

Member Avatar for macgurl70
0
1K
Member Avatar for donjusko

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.

Member Avatar for sleeperfs2
0
155
Member Avatar for creativehunter

I do like the image in logo one, but not the font. The font in logo 2 is much better.

Member Avatar for xtianjover
1
139
Member Avatar for george61

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, …

Member Avatar for macgurl70
0
148
Member Avatar for ChrisLala

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, …

Member Avatar for ebay1989
1
533
Member Avatar for Ritesh_4

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 …

Member Avatar for davidweiss146
0
377
Member Avatar for gerbras123

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]

Member Avatar for macmad
0
183
Member Avatar for Connavar3

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 …

Member Avatar for Connavar3
0
175
Member Avatar for Baby.D

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 …

Member Avatar for packetpirate
0
142

The End.