Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Wonx2150
I dont know what to say about me. Reading my blog proberly provids a bit of insight into me http://wonx2150.blogspot.com/ or my facebook: http://www.facebook.com/profile.php?id=506870501&ref=profile Visit my latest creation http://wonx2150.dragonhost.net.au/elbh/
Thomas Cook Overseas Rep ID card?
I know a person who is claiming to work for Thomas Cook and making all kind of offers to me and others about been able to get us cheap holidays and travel. Although when confronted they come up with excuses and delay answering questions. One of the things is their ID Card. For a long time they couldn't find it and when they finally sent a picture (via mobile) it was very blurry and looked fake.
My question is does anyone know what the real card looks like? For an Overseas Representative. Basic details are all I need. What colour is it what details does it contain? Name? Date of Birth etc? And what size is it?
Thanks for any help you can give.
2 AnswersAir Travel8 years agoAcer laptop doesn't wake up when i lift the lid?
I have recently got an Acer Aspire 5755G and when I lift up the lid the laptop doesn't resume from standby. Is this normal or not? I have to press a key or the power button to get it to resume windows. Its rather annoying to be honest and the first laptop I have ever encountered that doesn't wake from standby by lifting the lid.
Can someone tell me if this is normal or a fault with the laptop/settings?
6 AnswersLaptops & Notebooks9 years agoStreaming randomly drops out?
When streaming movies from our NAS GoFlex Home to our Samsung BD-HDD player the video file stops playing randomly and wont restart. We were watching a movie and after about 30 minutes it just stopped and when we tried to resume it wouldn't let us. It just started again from the beginning.
The NAS drive is new although the router is fairly old. Its a Linksys WRT54GL. I have wondered if the slower transfer speed of Wireless G might be the problem.
Any suggestions on what might be up? Thanks in advance for any help.
1 AnswerComputer Networking9 years agoProblem with IE6 and dropdown menu.?
I am having trouble making a drop down menu work in IE6. I have tried all kinds of suggestions and hacks that might make it work. Unfortunately so far none have worked.
Here is the HTML code of the menu:
<body>
<div class="maincontainer">
<div id="navMC">
<ul id="navMC">
<li class="liheadingMC">My Creations</li>
<li><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/photoicon.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Photos</a>
<ul>
<li><a href="https://picasaweb.google.com/115309650170276523188... onmouseover="mouseOver('imgtoflip', 'imgs/Picasaicon.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Picasa</a></li>
<li><a href="http://wonx2150.deviantart.com/%22 class="navMC" onmouseover="mouseOver('imgtoflip', 'imgs/deviantarticon.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Deviantart</a></li>
</ul>
<li><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/gamesicon.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Games</a>
<ul>
<li><a href="http://forums.civfanatics.com/member.php?u=99816%2... onmouseover="mouseOver('imgtoflip', 'imgs/civ2icon.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Civ 2 maps/addons</a></li>
<li><a href="http://www.gamefront.com/files/6189284/Resistance_... onmouseover="mouseOver('imgtoflip', 'imgs/operationflashpoint.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Operation Flashpoint Units</a></li>
</ul>
<li><a href="index.html" onmouseover="mouseOver('imgtoflip', 'imgs/backbutton.png')" onmouseout="mouseOut('imgtoflip', 'imgs/questionicon.png')">Back</a></li>
</ul>
</div> <!--End of navbar -->
<div class="imgflipweb"><img src="imgs/questionicon.png" width="128" height="128" name="imgtoflip" id="imgtoflip" alt="Question mark"/></div>
</div> <!--End of maincontainer -->
And here is the CSS:
/* My Creations */
.navMC {
padding-top:0px;
}
#navMC ul {
text-align:left;
list-style-type: none;
padding-top:0px;
width:200px;
float:left;
}
#navMC li {
padding-top:10px;
padding-bottom:10px;
font-size:25px;
}
#navMC ul li {
position: relative;
}
#navMC ul li a {
color:#000;
text-decoration:none;
position: relative;
}
#navMC ul li a:hover {
color: #603;
}
#navMC li ul { /*Makes the drop down menu appear to the left of the menu.*/
position: absolute;
left: 200px;
top: 0;
display: none;
}
#navMC li:hover > ul { /*Makes the drop down menu appear*/
display: block;
}
.liheadingMC {
font-weight:bold;
font-size:36px;
font-weight:bold;
color:#000;
padding-bottom: 35px;
Here is the finished product: http://wonx.dk/2012/mycreations.html
Thanks in advance for your help :).
1 AnswerProgramming & Design9 years agoChange visibility of a link with Javascript?
I am trying to create a bit of javascript that will change a hidden URL to visible once people click on a link. The element siteurl is set to display:none in the CSS file.
Here is my code:
function changeurl() {
if (document.getElementById(siteurl).style.display = 'none')
{
(document.getElementById(siteurl).style.display = 'visible')
}
}
And here is the rest of my code to put it into perspective:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Wordpress Websites</title>
<link href="home2012 css.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function changeImage(newimage) {
var changeimg = document.getElementById("imgchange");
changeimg.src = newimage;
}
function changedescription(newtext) {
var description = document.getElementById("description");
description.innerHTML = newtext;
}
function changewebaddress(newtext) {
var webdescription = document.getElementById("webdescription");
webdescription.innerHTML = newtext;
}
function changeurl(newurl) {
var siteurl = document.getElementById("siteurl").href = newurl;
siteurl.innerHTML = webdescription;
siteurl.href = newurl;
}
function changeurl() {
if (document.getElementById(siteurl).style.display = 'none')
{
(document.getElementById(siteurl).style.display = 'visible')
}
}
</script>
</head>
<body>
<div class="maincontainer">
<div class="navshow" id="navshow">
<ul class="navshow">
<li class="liheadingshow">
<h2>Wordpress Websites</h2>
</li>
<li><a href="#" onclick="changeImage('imgs/sampleMIC.gif'),
changedescription('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras dui justo, cursus quis varius mattis, convallis nec justo. Suspendisse potenti. Suspendisse quis mauris lorem. Maecenas at nunc tortor, nec laoreet velit.'),
changeurl('http://meditateincopenhagen.org/')
; return false">Meditate in Copenhagen</a></li>
<li><a href="#" onclick="changeImage('imgs/sampleMIB.gif'), changedescription('In laoreet sem vel mi suscipit placerat. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.'),
changeurl('http://meditasjonibergen.no/')
; return false">Meditate in Bergen</a></li>
<li><a href="#" onclick="changeImage('imgs/sampleNDC2012.gif'), changedescription('Proin facilisis velit vitae augue semper vitae sodales odio malesuada. In a nisl sit amet dui placerat rutrum vel vel tellus. Phasellus leo velit, pharetra id scelerisque eget, volutpat eu ipsum. Pellentesque eget ante justo, vel dignissim odio.'), changeurl('http://kadampafestivals.org/scandinavia/')
; return false">2012 - Nordic Dharma Celebrations</a></li>
<li><a href="webdesign.html">Back</a></li>
</ul>
</div> <!--End of navbar -->
<div class="imgflipshow">
<p><img src="imgs/wordpresspage.png" width="350" height="200" id="imgchange"/></p>
<p class="description" id="description">Click on one of the site from the menu to learn more.</p>
<a id="siteurl" href="">Click here to visit the site!</a>
</div>
</div>
<div class="legal">Site Created by David Hirst 2011 - 2012. The website is licened under Creative Commons Licence BY, NC, SA. For more infomation click here. The images used on this website are copyright of there respective creators. See source code for more infomation. </div>
</body>
</html>
Thanks in advance for your help :).
1 AnswerProgramming & Design10 years agoJavascript rollover question?
I am trying to make a website, in which the image changes to reflect the menu item you are pointing at. I have got it half working. It changes to reflect the menu item but won’t change back once you are no longer pointing at that icon. In more technical terms the mouseOver event works but I can’t get the mouseOut event to work the same way.
Here is the code:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled</title>
<link href="home2012 css.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function mouseOver(img_name, img_src)
{
document[img_name].src = img_src;
}
function mouseOut()
{
document[img_name].src = "questionicon.png";
}
</script>
</head>
<body>
<div class="maincontainer">
<div class="navbar" id="navbox">
<ul class="navbar">
<li class="liheading">Welcome</li>
<li class="li1"><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/facebookicon.png')" onmouseout="mouseOut()">About Me!</a></li>
<li class="li2"><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/webdesign.png')">Web Design!</a></li>
<li class="li3"><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/mycreations.png')">My Creations!</a></li>
<li class="li4"><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/Picasaicon.png')">Photos!</a></li>
<li class="li5"><a href="#" onmouseover="mouseOver('imgtoflip', 'imgs/contactme.png')">Contact Me!</a></li>
</ul>
<div class imgflip><span class="imgflip"><img src="imgs/noimage.png" width="128" height="128" name="imgtoflip" id="imgtoflip"/></span></div>
</div> <!--End of navbar -->
</div>
</body>
</html>
3 AnswersProgramming & Design10 years agoWordpress web address's not working?
I am having problems with Wordpress breaking my web addresses (url's) every time i press update.
Here is the page with the problem: http://kadampafestivals.org/scandinavia/?page_id=5... Try clicking any of the URL's and you will end up on the main page.
Why is it that it automatically adds "http://kadampafestivals.org/scandinavia/wp-admin/%... to the start of all the url's. In the html they are quite normal:
<a href="www.mediteraistockholm.se">www.mediteraistockholm.se</a>
Please let me know how I can fix this. Plugin's are not an option as the wordpress is setup in such a way that they can’t be installed. It’s not my doing, I am just in charge of upgrading it for 2012.
Thanks in advance.
3 AnswersProgramming & Design10 years agoJavascript guessing game problem?
I am trying to create a random number guessing game in Javascript and having problems with my code. I cant work out exactly what the problem is though the random number is fine and the transfer of the value the user enters into the form is fine. Its somewhere in the function process that the error lies.
Firebug keeps telling me there is various things undefined and so on. So I try to define them and it moves onto a new one etc.
<html lang="en">
<head>
<title>JS Guessing Game</title>
<script type="text/javascript">
function createRandomNumber() {
// this generates a random number between 0 and 100, then hands it back
// to the code that called the function.
return Math.floor(Math.random()*101);
}
var randnumb = createRandomNumber(); // gets the random number and stores it.
alert(randnumb);
function process() {
alert(document.forms.formguess.guess.value);
var guess = document.forms.formguess.guess.value; // transfers the value of guess textbox to userguess (within the function)
document.forms.formguess.guess.value=''; // clears the guess box.
//return userguess;
}
var result = process();
if (randnumb == result)
{
alert("Correct");
}
if (randnumb<result)
{
alert("less than");
}
if (randnum>result)
{
alert("greater than");
}
</script>
</head>
<body>
<h1>JavaScript Number Guessing Game</h1>
<form onSubmit="" name="formguess">
<input type="text" name="guess" value="">
Take a Guess
<input type="button" value="Guess" onClick='process(randnumb)'>
</form>
</body>
</html>
Thanks in advance for your help.
1 AnswerProgramming & Design1 decade agoFish dying from time to time?
My fish are dropping dead from time to time. We have a tropical tank with about 10 fish in at the moment and about once a month a fish dies. There is no pattern to it or anything they are often different species. And not obviously the weakest fish for example. As the latest victim was the only male of a species. There is not obviously anything wrong with the tank.
When living with my parents and we had gold fish and when they died it tended to be a mass extinction were all of them died within a week or so. Not just 1 a month.
Any ideas as to what maybe causing it? As far as we know they are getting enough food and the water is clean.
6 AnswersFish1 decade agoCheap Web hosting that allows multiple domain names per account?
I am looking for cheap web hosting preferably european based that can register a .dk domain name for me and that would allow more than one domain name by default. Does anyone know (and can recommend) a company that allows more than 1 domain name per account. Under 2 or 3 euros a month.
For a comparison Ive being looking at http://www.one.com/en/ and https://surftown.dk/webhotel-privat/sammenlign (though I am aware they are over 3 euros a month).
4 AnswersComputer Networking1 decade agoMake my Menu look like this? CSS Web design?
Hi for a project in my website design course I need to reproduce a web page that is very badly made (using images to pad things out and stuff). It has a funny menu that looks like this: http://img18.imageshack.us/f/menuproblem.png/
I have no idea how to do this in CSS. Can someone get me started or suggest where i could look. I cant google it as im not sure what im searching for.
Any help would be appreciated.
1 AnswerProgramming & Design1 decade agoLinking two tables in MS Access?
I am trying to link two different tables in Access so that changes made in one will be updated in the other. If such a thing is possible. I know a query can do that but you can not write data to a query from Visual Basic.
I have one big table called tblCustomer and I have a smaller table called tblTrip that contains 4 of the fields in tblCustomer. I need a way to make it so that changes made to tblTrip will be reflected in tblCustomer and vise versa.
Is it possible and if so how?
3 AnswersProgramming & Design1 decade agoSamsung Blu-Ray player problem with wireless?
I recently purchased a Samsung BD-C8200 and i am having trouble with the internet.
To start with the router is working fine all the computers in the house connect with out a problem and the BD-C8200 connects fine via cable so its simply the wireless. When i run the network test it is happy with the mac address and the IP-Subnet DNS etc it fails on the Gateway.
The router is a Linksys WRT54GL and it tells me the firmware version is Firmware Version: v4.30.11 the latest is Ver.4.30.14. I haven't tried updating it yet but if that's what might fix it I'm happy to give it a shot.
Any suggestions besides update the firmware? As im not confident that will work.
1 AnswerHome Theater1 decade agoLaptop screen resolutions questions?
I am looking at buying a Sony Vaio VPC-EB3Z1E/BQ http://www.notebookcheck.net/Sony-Vaio-VPC-EB3Z1E-...
My question is about the screen resolution they list two different models. 1000 Danish Kr different in price (about 180 USD). The only difference is the screen resolution.
Here is a comparison:
9000 Danish KR 8000 Danish Kr
Laptop Screen Resolution VAIO Display Plus 1920 x 1080 VAIO Display 1366 x 768 (16:9)
Is the first one worth an extra 1000 kr or not? I know the difference is not great but id like to know if its worth the extra money or not.
2 AnswersLaptops & Notebooks1 decade agoReturning data to from in Visual Basic?
I am having some trouble returning code to my form in visual basic. It is sent to a class where it is validated and then is returned to the form but i am not sure how exactly to do that and answers seem to be hard to find. Here is the code the ??? marks represent where the problem is.
Thanks in advance for any help :).
Private Function IsValidData() As Boolean
Return Validator.IsValidLength(???) AndAlso Validator.IsValidCharacters(???)
End Function
Here is the validation class:
Public Class Validator
Public Shared Function IsValidLength(ByVal mynum As numbers) As Boolean
If mynum.Ppartnumber.Length = 6 Then
Return True
Else 'If mynum.Ppartnumber.Length <> 6 Then
Return False
End If
End Function
Public Shared Function IsValidCharacters(ByVal mynum2 As numbers) As Boolean
If IsNumeric(Right$(mynum2.Ppartnumber, 4)) Then
Return True
Else
Return False
End If
If Not IsNumeric(Left$(mynum2.Ppartnumber, 2)) Then
Return True
Else
Return False
End If
End Function
End Class
2 AnswersProgramming & Design1 decade agoVisual basic code adding 3 of each item to listbox?
I am having a problem with a program i am creating in visual basic. When it reads in the data and adds it to a listbox it adds 3 of each item not one.
eg. 12352 Red Shoe 2
12352 Red Shoe 2
12352 Red Shoe 2
I'm sure its a simple problem as earlier while trying to make it work i got ride of the problem. But at the time it wasn't working so i wiped out the bit of code that fixed this problem.... :(
Here is my code:
Private Sub btnGetData_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGetData.Click
Dim sr As StreamReader = New StreamReader("parts.csv")
Dim storagelist As New List(Of numbers)
Dim numarray(0) As String
Try
While sr.Peek <> -1
' Trying to split the data
numarray = sr.ReadLine.Split(",")
Dim num1 As New numbers
num1.Ppartnumber = numarray(0)
num1.Ppartname = numarray(1)
num1.Pinventorybalance = numarray(2)
For Each w As String In numarray
storagelist.Add(num1)
Next
End While
sr.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
'''''''''''''''''
' Works but adds everything 3 times and is rather messy.
For Each test1 As numbers In storagelist
lstData.Items.Add(test1.Ppartnumber & "," & (test1.Ppartname) & "," & (test1.Pinventorybalance))
Next
End Sub
1 AnswerProgramming & Design1 decade agoVisual basic code problem?
I am trying to read data from a csv file into a collection but not having much luck. Could someone tell me whats wrong with my code. It needs to be split as well that complicates things as the comments indicate. Thanks in advance.
Imports System.IO
Public Class test
Private Sub btnGetData_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGetData.Click
Dim sr As StreamReader = New StreamReader("parts.csv")
Dim storagelist As New List(Of String)
Dim numarray(0) As String
Try
' Trying to split the data
'numarray = sr.ReadLine.Split(",")
' trying to add the split data to the collection.
'For Each w In numarray
'storagelist.Add(numarray(w))
'Next
storagelist.Add(sr.ReadLine())
sr.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
''''''''''''''''''
For Each stri As String In storagelist
MsgBox(stri)
Next
End Sub
End Class
Here is an example of the data that needs reading in it if helps:
AB3476, Regular Brick, 5
AB3211, Long Brick , 10
AB2211, Roof Brick, 0
AB2501, Door Brick, 2
2 AnswersProgramming & Design1 decade agoHow to Split an array element in half - VB.Net?
I am trying to split an array into bits for example.
customername(0) = John Collins - i want to split that so that
customerFname(0) = John and customerLname = Collins
I can find plenty of examples of how to split strings into an array but no suggestions of how to split an array into another array.
Can someone help me with this?
3 AnswersProgramming & Design1 decade agoHow to find if a list of data contains a specific string - Visual Basic Problem?
I am trying to find a specific name in a list of names. The user will enter the name into a textbox and it will search though the list to find it.
My names are set out like this:
Adam James, 402521
Max Hastings, 410211
Michael Burleigh, 542112
and I need to find them and then split off the phone number. I got the last bit working and its splitting off the number but at the moment I have to type out the whole name and the number. I need it so I can just type"Adam James" not "Adam James, 402521"
Here is my code:
names is the list
Dim thename As String = txtFindEntryName.Text
Dim str As String
If names.Contains(thename) Then
str = thename
This finds the name from the list fine but only if the name is exactly the same how can I find it if its not?
Thanks for your help in advance.
2 AnswersProgramming & Design1 decade agoBubble Sort Algorithm?
Im trying to create a simple bubble sort algorithm but cant find any examples. All i need to do is sort a pre defined array of numbers. All the examples i find either don't work or make it unnecessarily complicated. Can someone post me an example of a simple bubble sort (That works) or a link to one.
Thanks in advance :)
3 AnswersProgramming & Design1 decade ago