256 Posted Topics

Member Avatar for tom_oxygen
Member Avatar for MidiMagic
0
175
Member Avatar for bongobob
Member Avatar for FC Jamison

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

Member Avatar for Salem
0
591
Member Avatar for ongxizhe
Member Avatar for ongxizhe
0
190
Member Avatar for Ancient Dragon

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.

Member Avatar for nanosani
0
263
Member Avatar for FC Jamison

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?

Member Avatar for FC Jamison
0
163
Member Avatar for FC Jamison

How would one construct a Hamming code that can correct up to 4 bit errors in the resulting code words?

0
81
Member Avatar for maverick786

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?

Member Avatar for maverick786
0
143
Member Avatar for FC Jamison

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

Member Avatar for iamthwee
0
188
Member Avatar for Racoon200

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]

Member Avatar for Racoon200
0
315
Member Avatar for virsa

I'm just learning C++ myself... Wouldn't you use a public member function to access and modify private member variables?

Member Avatar for Laiq Ahmed
0
141
Member Avatar for Matt Tacular

Just glancing at the code, would this modification work? [code] unsigned int getVolume() { setVolume(); return Volume; } [/code]

Member Avatar for Matt Tacular
0
303
Member Avatar for Mikeish
Member Avatar for Maidomax
Member Avatar for Aliciajp

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.

Member Avatar for MidiMagic
0
108
Member Avatar for Mikeish

It appears to be working in IE7. I can't check it in IE6 because Microsoft tricked me into installing IE7 as an update.

Member Avatar for Mikeish
0
100
Member Avatar for Inny

This forum uses PHP and the code is embedded into the software. I do not know if it can be done with javascript.

Member Avatar for Inny
0
146
Member Avatar for FC Jamison

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 …

Member Avatar for FC Jamison
0
116
Member Avatar for JS1988

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 …

Member Avatar for JS1988
0
250
Member Avatar for msovay

You need to check your web hosting company for their form mail program. It should have instructions for setting up your form.

Member Avatar for FC Jamison
0
55
Member Avatar for arohamack

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 …

Member Avatar for arohamack
0
514
Member Avatar for sanjeevverma

It might help if we can see all of the coding so that we can determine where the error lies.

Member Avatar for FC Jamison
0
88
Member Avatar for kamleshpdude

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 …

Member Avatar for FC Jamison
0
160
Member Avatar for DaMaster121

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 …

Member Avatar for FC Jamison
0
101
Member Avatar for KennyZ

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.

Member Avatar for FC Jamison
0
312
Member Avatar for HandSome
Member Avatar for rickyb007
Member Avatar for Dave Sinkula
Member Avatar for DukeNukem

I use dreamweaver myself...by you can create a web site using nothing more than notepad if you know html and css.

Member Avatar for roryt
0
176
Member Avatar for Rie~rie

I would use css for that. a:link { color: blue } a:visited { color: #0000FF } a:hover { color: #0000FF } a:focus { color: #0000FF }

Member Avatar for roryt
0
85
Member Avatar for mim3

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.

Member Avatar for GreenDay2001
0
187
Member Avatar for rlsierra

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]

Member Avatar for GreenDay2001
0
191
Member Avatar for Takes Time
Member Avatar for Han1977

You might try creating a javascript that will allow you to edit one file to update the links on all of your pages.

Member Avatar for GreenDay2001
0
139
Member Avatar for kissiwat
Member Avatar for FC Jamison
0
129
Member Avatar for shanenin

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.

Member Avatar for FC Jamison
0
188
Member Avatar for mikel_2006

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

Member Avatar for FC Jamison
0
85
Member Avatar for Cristalle

Have you tried revoving windows media player altogether with add/remove Windows components and then installing WMP 10?

Member Avatar for Cristalle
0
264
Member Avatar for lol_hacker101

yeah...took me about a minute to find a binary translator and enter the code

Member Avatar for lol_hacker101
0
153
Member Avatar for tefflox

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]

Member Avatar for bryan110
0
96
Member Avatar for cycleops

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 …

Member Avatar for cycleops
0
106
Member Avatar for #tbone

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?

Member Avatar for #tbone
1
134
Member Avatar for Anax
Member Avatar for #tbone

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 …

Member Avatar for FC Jamison
0
196
Member Avatar for narsto

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.

Member Avatar for FC Jamison
0
119
Member Avatar for TheNNS

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.

Member Avatar for TheNNS
0
130
Member Avatar for animanga

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

Member Avatar for animanga
0
149
Member Avatar for Anax
Member Avatar for hgltd

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?

Member Avatar for hgltd
0
167
Member Avatar for chikamoday

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

Member Avatar for gerbil
0
147

The End.