5,277 Posted Topics
Re: If you are only interested in detecting pre IE7, why not just use an IE conditional comment. If you detect "less than" IE 7, run a block of javascript to send the user to another page. <!--[if lt IE 7]> Special instructions for IE 7 or older here <![endif]--> | |
Re: Not natively within Word. You could have multiple docs open but you could either switch between them or have word display them and arrange them into different windows. For the tab approach, you'll need an "add-on". A quick search resulted in this example.... http://www.extendoffice.com/product/word-documents-tabs.html | |
Re: It looks fine to me in IE9.. nice design by the way. good job. | |
Re: If you add the runat="server" to the HTML elements, you can access them in your code behind. That doesn't mean you will have access to methods and properties for those elements. For example on the span element, you'd be able to access the innerHTML property. | |
Re: Whats up bro? Either create a stored procedure on your MSSQL DB that would can run from a scheduled SQL job on a routine basis (low tech, easy to implement solution), or write a conse app that you can install as a service on the server running in the background … | |
Re: So some users probably cant see the image, because you set it to far off to the left for their screen size.... `left:1120px;` Your "wrapper" div has a width of 100% so, you are not containing your content in the center of the page, which is fine if that is … | |
Re: I think some people tend to think they are the same. I'd go with Geek for me. | |
Re: Sounds like a quirky issue. It may be resolved by checking with the vendor and installing the latest LAN driver. However, my experience with network adapter issues that behave quirky is that you could try going into device manager, uninstalling the device, right click the computer icon, start a rescan, … | |
Re: You only need one router to connect two networks. As you mentioned, with two routers, you will need either a routing protocol or static routes defined on these routers. What do you have so far? Network diagram, subnet info, IPs? | |
Re: I just tested with Chrome 24 and the important seems to be working as expected. Here is a demo on jsFiddle. You should notice that the link color is blue, but the underline did not apply. http://jsfiddle.net/rgK3d/ <!DOCTYPE html> <html> <head> <style> .lnkjobref {color: Blue !important; text-decoration: underline;} #test1 {color: … | |
Re: I suspect that you will need to emulate the console's hardware, BIOS, Firmware, Etc.. Even if you own the equipment, not sure that's legal since you do not own the rights to the Xbox OS. | |
Re: The only real way to get real quality visitors is by having quality content on your site. | |
Re: If you are having an issue or need some feedback, you would have to post revealing code or a link to where it is being hosted. | |
Re: Your first step is to create the .ico file. There are quite a bit of sites online that will allow you to upload an image and convert it to this file type. Save the file as favicon.ico. Second, there are a few variations of how to get browsers to use … | |
Re: > The first is why does the word “Galvanized” exceed the boundariesof the container box You had set a width of 998px to that container so the width was able to accomodate this word on that specific line. The problem is that you have it shifted to the right because … | |
Re: You have a syntax error in line 23. Also check line 12, doesnt seem to point to a valid file. `<div><a href="#"><Videos/a></div>` When i fix the syntax error using Chrome's dev tools, the contact us shows up on the right of the other items..  | |
Re: You'll need to clarify what you are trying to do, but it seems to me that you are trying to update existing data in your table. For that you use the SQL UPDATE statement. | |
Re: Which image are you trying to get up in the navigation bar...the team shift image? Once you get hte proper size image, you can place it after the div that currently has the class of "container", and simply assign an abosolute position with top and left values. however, this will … | |
Re: > hey guy i just wanted to know how the OSI/TCP affect the computer hardware and network components as i have no clue any help? The OSI model is simply a conceptual model. Its purpose is to create a standardized model that creates different layers of protcols/services where each layer … | |
Re: > is this just a bug When you run this site, within the page, the browser is trying to download data from the source. Could it be that you are running this from within the development IDE application? Have you tried to upload your site to a web server that … | |
Re: >I would like to get help about how to connect ASP.Net button connections to the database. Your question is too vague at this point. I dont see how we can help you with this based on what you have described so far. In general, in your code behind page, you … | |
Re: I tried to take a look at the code you posted but I was not able to render the page properly. Looks like there are a few syntax errors such as in line #1 of your CSS... you are missing the curly brace to close the style set. There may … | |
Re: Any server side scripting that you are using (asp.net, php., etc..) or are these just HTML pages? Do you have this site online to get a better idea of the process you are describing? | |
Re: > Nobody That's not a true statement. I know quite a bit of conservatives and liberals that know how to balance their personnel budgets. | |
Re: Please provide additional information to clarify this. I've been working with Microsoft networking since '96, and never heard of an account with two passwords. Passwords are typically stored as a hash value in the security account manager database. I don't see how it would be possible. Are you sure you … | |
Re: It could be that the hardware is overheating. Do you hear that fans moving properly? can you open the computer to verify that you dont have a fan partially spinning or some other obstruction? It could also be that the heat sink over the CPU is full of dust, not … | |
Re: > it rebooted asking me to log in- So, do you see the login screen then? If so, type administrator for the user name and type in your password in the password text box. If you dont see the log in screen, hit CTRL-ALT-DEL as mentioned by LucianAdamson, as XP … | |
Re: If you press F2 after you boot, it will launch the BIOS setup utility. Source of info: http://www.ehow.com/how_6785358_access-latitude-d600-bios-system.html | |
Re: It could be one or more issues. This could be malware preventing you from accessing the internet. It could also be that your network interface card is having issues. If this is a wireless connection, it could also be that your wireless settings are the problem. Do you have any … | |
Re: > There must be a way to get in to my winxp(sp3) machine and take what I want off the drives If you are unable to resolve your keyboard/booting issue, you could always pull out the drives, plug them into another system via USB/IDE interface, read the drives and copy … | |
Re: I think we need more of your code to get a better picture of what you are trying to do. | |
Re: I think you'll have trouble using the gradient approach accross modern browsers... Can you clarify what you mean by different colors? You want the text to have multiple colors, you mean like a spectrum of colors, or do you want each letter to have its own color? | |
Re: If you have a concern about receiving annoying PMs from another community member, why not send a private message to Dani or one of the other administrators on this site. Posting it doesnt really seem like an appropriate action. No one else needs to see the PM. | |
Re: Rather than asp.net, you should handle this client side using javascript or easier with jQuery. Here is an example ... $(document).keypress(function(e) { if(e.which == 13) { alert('You pressed enter!'); } }); Instead of the alert box, use the jQuery focus method to give the target element focus, or show/hide divs, … | |
| |
Re: >You don't get rep in the Community Center forums. Not any more, but it appears that the members that have been on this site for quite some time did in fact get reputation points with their postings in the Community Center forums, and it appears that the point range was … | |
Re: Same goes for MSSQL. If you include the character string '%', MSSQL will generate an error. | |
Re: > well respected web design authors I am by no means even close to being considered a web design author, but in my case, I generally avoid absolute positioning except when I need to fix a header, footer, or images in certain parts of the page. I wouldnt suggest using … | |
Re: You may want to first give it a try, then ask for some help. It's unlikely that someone is going to write the code for you and turn it over. | |
Re: The reason why this is occurring is because you applied a float:left to the image. The float takes the image outside of its normal flow. Therefore, its not part of the height of the parent div element. A quick fix is to apply a clear:both right before the closing **</div>** … | |
Re: Without the rest of your code, Its not easy to test it.. but I have a similiar example which resizes width and height and it seems to work as expected... http://jsfiddle.net/y9YsD/ | |
Re: What do you mean a VIOP web application. Do you really mean VoIP? Also, that's a broad and vague question. More details would be needed. What do you need this application to do? are you developing in c# or vb? Have you put together any code as of yet? | |
Re: You may want to consider using Win 7 or later since Win XP is soon coming off support from Microsoft. | |
Re: If there is a border around an image, you can set the border to none: img { border:none } | |
Re: So it sounds like you made a connection to the SQL service. You should right click and attach database. A window will pop up allowing you to located the db and log file(s). | |
Here is my first attempt at creating a simple slideshow. Contributions to making this more efficient are welcomed! #jsFiddle --> [Demo](http://jsfiddle.net/wGnEm/1/) | |
Re: So exactly what error message are you getting when trying to retreive this info from the DB? I assume that the user ID field is a number? |
The End.