- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
I own PTConsulting, a small computer consulting company located in Scarborough, Ontario that works with SOHO and small businesses. I graduated from Centennial College in Electronics Technology and Computer Systems Technology and have over thirty years…
- Interests
- Hardware and the software that makes it sing. Mutually beneficial business relationships. Difficult…
- PC Specs
- Fedora 14, Centos, Windows 7, Windows Vista, Windows XP. All machines are quad core or better with 4gig…
86 Posted Topics
Re: My best guess. I added heights to the td's. [CODE]<table style="border-top:2px solid #F5F5F5;"><tr style="color:#F7F7F7;padding:0px;display:none;"><th>pic</th> <th>titledescr</th> </tr><tr style="padding:10px;border-bottom:2px solid #F5F5F5;"><td rowspan="2"><img width="100" height="100" src="http://maps.google.com/maps/api/staticmap?center=224 39th Ave South,Jacksonville Beach,FL,32082&zoom=15&size=156x156&sensor=false&markers=color:red%7C224 39th Ave South,Jacksonville Beach,FL,32082" /> </td> <td height = "50px">Lot Number: 3 <a href="/functions/Listing Form.php?id=359" onclick="return popup(this);">224 39th Ave South,Jacksonville Beach,FL,32082</a></td> </tr><tr style="border-top:2px … | |
Re: Hello RTC. A quick question. Your HP Pavilion dv6000 comes with wireless bluetooth I believe. Try shutting it off if you have it. Hope this helps. | |
Re: Try changing the width to a fixed number. I think what is happening is that the div container is shrinking to the size of the img because it is the only content in the div. The margins are centering your img in a div that is the same size as … | |
Re: Let me see if I get this. In this case, the case of the word is formid and it looks to be a property name for an object. [CODE]<script type="text/javascript"> var myform=new formtowizard({ formid: 'fslide', persistsection: true, revealfx: ['slide', 500] }) </script>[/CODE] Here, the case is formID and it is … | |
Re: [url]http://apps.facebook.com/aslam_facebook/[/url] This url is 404 Not Found. I would assume that's why? | |
Re: As far as the downgrade goes, I have done a lot of Vista back to XP, but not that many Windows 7 to XP. As @Rik from RCE and @benmar point out, this looks like a hardware issue. Also, I agree with @Rik from RCE about the drivers. Here's a … | |
Re: Why not get the source code for his site and see if you can modify it. | |
Re: From what I see, IE9 uses only the styles found in code/css/styles.css and code/css/tables.css. [CODE]<!--[if lt IE 9]>[/CODE] means if less than IE9. Shouldn't this line [CODE]$("#header ul li ul li:odd").css("background-color", "#37393d");[/CODE] be [CODE]$("#header ul li ul li:nth-child(odd)").css("background-color", "#37393d");[/CODE] I will look at the two css files in a minute. … | |
Re: I think you are entering it as multiple lines. Try it this way. [CODE]CREATE TABLE WORKER (Wkr_id int (4),Name varchar(50),Hire_date date,Wage_rate char(10),Area_ID char(3) references AREA)[/CODE] | |
Re: I believe that you are in Visual mode. In the upper left corner of the CKEditor is a source button. Click it and then paste code you are writing into the editor. Now, click the button one more time and you will see the visual presentation, not the code. Hope … | |
Re: Not much to go on, short off the fact you want some image to be swapped and animate the width when the mouse is over. Please put up a link or more code. | |
Re: Here's a little solution I whipped up. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> .county{ color:blue; } .countystats{ background-color:blue; width:100px; } </style> </head> <body> <div> <a class="county" href="#">one</a> <a class="county" href="#">two</a> </div> <div class="countystats">stats one</div><br /> <div … | |
Re: You are missing a </td> at the end of this line. But that is the small potatoes. [CODE]<td class='$row_class' style='text-align:center;'><a style='margin-right:20px; font-weight:bold;' href=\"/invoices/view/?id=".$id."&equip_num=".$invoice_num."\">View</a>[/CODE] So I would bind the click event to the td with the anchor and do something like this. [CODE]$('td.classname-that-shows-up').bind('click', function(){ $.post('my_php_file', function(data){ if(data){ $('#div-to-place-results').html(data); } }); [/CODE] … | |
Re: I haven't used it, but people I know say it's good. [CODE]http://www.easyphpcalendar.com/[/CODE] | |
Re: I believe that what is "wrong" is not wrong. The openDOMWindow function opens a window in a new viewport that is outside of the DOM of the opening window. Since the control is in the window that opened the new window, clicking outside of the windows closes it. I would … | |
Re: Are you trying to access a shared drive on a local network? | |
Re: I agree in both points @rubberman said. If I remember correctly, I spent one and a half days chasing dependencies before I could get yum to run properly(no --skip-broken). So when ever I have one of those days I make lists. heres a list of what finally went in to … | |
Re: Let me see if I can help. You are triggering doShow and doHide from your mouse event. There is no code for this shown. The doShow uses the doMenu function to determine if you are over the 'LI' (watch the case here as this is not the case you are … | |
Re: Start with this [url]http://www.htmlgoodies.com/beyond/webmaster/toolbox/article.php/3900056/Creating-a-Web-App-for-Googles-Chrome-Web-Store.htm[/url] | |
Re: Can I use a programming language? | |
Hello to everyone. I have an old flat database with a couple of hundred entries that I want to convert to a relational design. It was a user database for simple login and some preferences. I would like to know if there is a simple way to convert from one … | |
Re: Yes you use javascript, but I am pretty sure you don't want a drop down list. Nothing is shown until you drop it down and when you select something it rolls up. | |
Re: Give this a try. [CODE]INSERT INTO Folders (Foldername, client_ClientID) SELECT 'ClientDocs', ClientID FROM Client WHERE NOT (client_ClientID IN (SELECT ClientID FROM Client, Folders WHERE Client.ClientID=Folders.client_ClientID))[/CODE] Your tables[CODE]Client Table: ClientID INT PK AI, ClientName VarChar Folders table: FolderID INT PK AI, FolderName VarChar, client_ClientID INT[/CODE] I don't see s ClientsDocs anywhere … | |
Re: It looks like you have two document.ready functions. It's hard to tell. Can you post the page index.php please? I found this on their web site. Still looking for a shut off switch. [CODE]jQuery('#mycarousel').jcarousel({ vertical: true, size: 0, initCallback: mycarousel_initCallback }); [/CODE] You look like you are missing a property … | |
Re: Have you submitted your site to the search engines? | |
Re: Is there more than one order per day? Do you have a flat or relational design? | |
Re: If you want to delete the text from the stream but still have the contents. I simulated the feed with a file from your code that I made called subject.php. [CODE]<body> <?php $subject = file_get_contents('subject.php'); $mark=preg_replace('/<!-- Begin Code -->(.*?)<!-- End Code -->/s', $subject,''); echo("Mark is ".$mark."<br />" .$subject); ?> </body> … | |
Re: There are a lot of places for information. Google for html and css. Here's some code I threw together.[CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>My Footer</title> <style type = 'text/css'> #footer{position:absolute; top:200px; left:40px; width:1000px; background-color:#f0f;} </style> </head> <body> <div id … | |
![]() | Re: Insert a record using mysql console or phpmyadmin. I bumped into this before. |
Re: I wouldn't use anything bigger than a hover hilite done with css and javascript. Your Dreamweaver should do the job nicely. If I was feeling ambitious, I might go all the way to an image swap. | |
Re: If you put some 301 redirects in you should have no problem. have a look at [URL="http://www.webconfs.com/how-to-redirect-a-webpage.php"]http://www.webconfs.com/how-to-redirect-a-webpage.php[/URL] This should take care of the problem. Once the search engines stop delivering php pages take the rediercts out. This should solve the problem instantly. | |
Re: This line tests if the var error_array has been created. [CODE]isset($_SESSION['error_array']))[/CODE] I think you are looking to see if it has a value. | |
![]() | Re: Try this replacement.[CODE]<script type="text/javascript"> xmldoc=loadXMLDoc("food.xml"); document.write(xmldoc.childNodes[0].children[0].children[0].childNodes[0].nodeValue); </script>[/CODE] Hope this helps. |
Re: The problem is your if structure. [CODE]function validateForm() { var x=document.forms["contactform"]["name"].value; if (x==null || x=="" || x=="Name") { alert("First name must be filled out"); return false; } else return true; }[/CODE] Use this . [CODE]function validateForm() { var x=document.forms["contactform"]["name"].value; if (x==null || x=="" || x=="Name") { alert("First name must be … | |
Re: He has timers for different objects. He is testing if the VerticalSlide is busy moving something. (moving[objname]) According to [url]http://www.w3schools.com/js/js_obj_boolean.asp[/url] false = [QUOTE]If the Boolean object has no initial value, or if the passed value is one of the following: 0 -0 null "" false undefined NaN the object it … | |
Re: Try this for me please. Change [CODE]mysql_query($dbconnection, $add_topic_sql)[/CODE] to [CODE]mysql_query($add_topic_sql, $dbconnection)[/CODE] I hope this helps. | |
![]() | Re: You can do it with script, but you still have to write all the tooltips. Do you want all the same or different tooltips? |
Re: Which one is not working, the show or the hide? What programming language are you using? | |
![]() | Re: It tests perfect here. It's got to be a server directive. Do you have root or equivalent access to the server? ![]() |
Re: Could you post the WSDL file? It's what you said here[QUOTE]So far I have got the service to recognise the login (via ntlm auth), send the WSDL and it *seems* to parse ok.[/QUOTE] I hate *seems* with little stars. Bells go off and the lights flash. | |
Re: This is a guess. Where did you import your namespace DAL from? | |
Re: If the server delivers PHP pages, yes. Here is a link for the PHP manual. [url]http://php.net/manual/en/book.pdf.php[/url] | |
Re: Try adding this line. [CODE]li{width:100px; display:inline;}[/CODE] I tested it with IE6, IE7 and IE8. There are slight positional differences and size differences but they all line up right to left like they should. I believe what is going on is that the default for IE for display is block and … | |
Re: Another possibility is with RSS. [url]http://www.techgadgetsweb.com/49/how-to-subscribe-to-wikipedia-via-rss-feeds[/url] | |
Re: You must have fixed it. The images grow in opacity as they come to the front. Only the front image clicks to an href. [url]http://jettisonquarterly.com/archive/pdf/issue03.pdf[/url] showed up as 404. I tested with IE7, IE8, Safari 5.04 Chrome and Firefox. The customers will be happy. | |
Re: This is the line you are using to connect to the service.[CODE]service.useService(http://localhost:57955/BMI.asmx, "BMI");[/CODE] Try this one.[CODE]service.useService(http://www.beetledev.com/webservices/bmiservice.asmx, "BMI"[/CODE] This is your code. service.BMI.callService("GetBMI", doubleFeet, doubleInches, doubleWeight); This is from Microsoft. [CODE] iCallID = sElementID.sFriendlyName.callService( [oCallHandler], fo, oParam) sElementID Required. The id of the element to which the WebService behavior is attached. … | |
Re: This seems to be the authority on the subject. [url]http://www.apple.com/itunes/podcasts/creatorfaq.html[/url] | |
Re: I'm probably misunderstanding something. Do you want all the permutations? | |
Re: There's too much information missing for me to check, but if I had to guess, I would look into when the informations is loaded versus when it is checked. |
The End.