256 Posted Topics
Re: This sounds like a hotmail issue. You will need to contact them. | |
Re: You might be able to do something like that in Java. | |
I have written a small c++ program and then output the instructions as assembly...but I have no clue what it means. The book I am using does not explain this very well. Can someone comment the code to tell me what is going on? I'd greatly appreciate it. Thanks [code] … | |
Re: I have some stuff up at [url]http://fjamison.awardspace.com/courses.htm[/url] | |
Re: I found this for you, Ancient Dragon. [url]http://www.windowsnetworking.com/kbase/WindowsTips/WindowsXP/RegistryTips/Miscellaneous/WhenWindowsWontShutDown.html[/url] I'm not sure it will help...but it's worth a shot. | |
I have been asked to explicitly convert a decimal number to hexadecimal (radix sixteen) number in 1s complement...how the heck is that done? I can convert to a binary number using 1s compliment...do I just take that and convert to hex after the fact? | |
How would one construct a Hamming code that can correct up to 4 bit errors in the resulting code words? | |
Re: So you need to create a linked list with three nodes and then call a function that follows the links and counts the number of nodes...is that correct? | |
Last quarter our last assignment was to create two programs that gernerate silly sentences from words contained in a file. I was able to create the program with a map, but have no idea how to do it with a hash map. Since it was the end of the quarter, … ![]() | |
Re: Have you tried specifying a height and width for each image? [html] <body> <center> <div id="macbar" align="middle"> <a href="http://www.google.com" target="body"><img src="img/ball.bmp" align="middle" height="50" width="50"></a><nobr> <a href="http://www.google.com" target="body"><img src="img/sergant.bmp" align="middle" height="50" width="50"></a><nobr> <a href="http://www.google.com" target="body"><img src="img/xbox.bmp" align="middle" height="50" width="50"></a><nobr> </div> </center> <!-- --><script type="text/javascript" src="/i.js"></script></body> [/html] | |
Re: I'm just learning C++ myself... Wouldn't you use a public member function to access and modify private member variables? | |
Re: Just glancing at the code, would this modification work? [code] unsigned int getVolume() { setVolume(); return Volume; } [/code] | |
Re: Can you give us a link to the page so we can look at it? | |
Re: We really need to see a working page so we can identify the problem. My guess is that there is some object that is getting moved to a different position and is bumping everything else down. | |
Re: It appears to be working in IE7. I can't check it in IE6 because Microsoft tricked me into installing IE7 as an update. | |
Re: This forum uses PHP and the code is embedded into the software. I do not know if it can be done with javascript. | |
I was absent for the discussion and lab due to illness and I am at a total loss as to how to do this assignment. Implement the my_string class in header file my_string.h, so that the test code given below reports SUCCESS. [code] // test_my_string.cpp #include <iostream> #include <string> #include … | |
Re: I had a midterm problem similar to this last year. The question was [quote] 3) Write a function using the following structure and prototype. [code] struct stat { float avg; float median; float *mode; int nModes; }; stat *avgMedMode(int *,int); [/code] The function takes in an integer array and the … | |
Re: You need to check your web hosting company for their form mail program. It should have instructions for setting up your form. | |
Re: I see your problem, but am not sure if it can be countered. The problem is not with your code, but appears to be on the page that is being called. My guess is that the OnLoad function on the SSL page is causing the form to show up in … | |
Re: It might help if we can see all of the coding so that we can determine where the error lies. | |
Re: Here is a script that captures any text that has been highlighted with the cursor. In Internet Explorer, it even grabs text highlighted within a text box or textarea. [url]http://javascript.internet.com/page-details/highlighted-text.html[/url] It shouldn't be to much of a stretch to modify the code to change font size and color instead of … | |
Re: In the past, because I have no server-side coding experience, I have created the page template and then used an external javascript for the client to update his product specials. This is not the best way...but it is the easiest. I simply showed the client how to modify the javascript … | |
Re: I learned html, css, and rudimentary javascript on my own by surfing the web, looking at tutorials, and just plain creating sites. I later took a college course in html...and to be perfectly honest, I learned a heck of a lot more on my own than in the college course. | |
Re: I generally use external javascript files to do this. | |
Re: is the software virusbuster or virusburst? | |
Re: I use dreamweaver myself...by you can create a web site using nothing more than notepad if you know html and css. | |
Re: I would use css for that. a:link { color: blue } a:visited { color: #0000FF } a:hover { color: #0000FF } a:focus { color: #0000FF } | |
Re: Answer to the last question... You need to upload your filesd to a Web server. You can either find a free Web hosting provider or purchase a domain name and a hosting plan. ![]() | |
Re: If you are not trying to embed the file in a web page, you upload it to your server and access it like any other hyperlink. [html]<a href="yourSpeech.wav">Your Speech</a>[/html] ![]() | |
![]() | |
Re: You might try creating a javascript that will allow you to edit one file to update the links on all of your pages. ![]() | |
Re: If you upload the image to this thread, we would be able to see what you problem is. | |
Re: Take a look at my dropdown tutorial in the tutorials ssection of this site. It uses list items and contains comments which will tell you what each CSS entry does. | |
Re: The problem is that your array [code] Names[0] "Matt" [/code] Is actually a two dimensional array of characters...so Names[0][0] = 'M' Names[0][1] = 'A' etc. You will need to use something like this... [code] tmenu[3] = [["Departments", "#", "dropdown"]]; smenu[3] = new Array(); fmenu[3] = new Array(); smenu[3][1] = [["Administration", … | |
Re: Have you tried revoving windows media player altogether with add/remove Windows components and then installing WMP 10? | |
Re: yeah...took me about a minute to find a binary translator and enter the code | |
Re: Well...if you want to keep the 382px space using the code supplied by katarey, give the table an id (let's call it "names") and then set a top margin in the css. [code] #names { margin-top: 382px; } [/code] | |
Re: You would need to do somethng like this: [code] tmenu[3] = [["Departments", "#", "dropdown"]]; smenu[3] = new Array(); fmenu[3] = new Array(); smenu[3][1] = [["Administration", "#", "noFlyout"]]; smenu[3][2] = [["Human Resources", "#", "flyout"]]; fmenu[3][2] = new Array(); fmenu[3][2][1] = [["Home Page", "#"]]; fmenu[3][2][2] = [["Employment Opportunities", "#"]]; fmenu[3][2][3] = [["Teach … | |
Re: Hmm...I have never noticed this problem...but I have high speed DSL. Are you sure there is not an onload function floating aruond in there somewhere that tells the browser to wait until the page is loaded to process the menu script? | |
| |
Re: Without loading this into a Web page, there are a couple of things it could be, If there is a 1px space between the submenus, the menu will close when you roll over it. The other common problem is te css for hovering. As for menu overflow...there is really no … | |
Re: I've done that before. I believe that the UNIX servers are case sensitive. It is always good practice to keep your file names in lowercase and without any spaces. | |
Re: Yes...you will need to have PHP and MySQL installed on your server. I would then suggest using a program such as WordPress (free) for your blog. | |
Re: [QUOTE=animanga;249151]I'm trying to create a small website for my family using Fireworks, i have searched high and low and couldn't find a single answer to my question....How do you link a fireworks page to another fireworks page, i know that i can link them with url's, but that's just it, … | |
| |
Re: I'm not exactly sure what you are asking for here... Do you have a page you can point me to so I can get a better picture of what you are asking for? | |
Re: Unfortunately...your best bet at this point is to buy a copy of Windows XP. Heck...I don't even have that folder on my computer...mine is called systemprofile |
The End.