101 Posted Topics
Re: Are you asking how you can port your page(s) over to a server to become an 'online website?' If so, you need to search google for web hosts so you can upload your page(s) onto their server. There are a range of different providers with different package options most suitable … | |
Hi everyone! I have images I'm using in my navbar instead of text. I also have another image that replaces it for the hover effect. For some reason, the images are displaying vertically when I want them to display horizontally. I've tried every combination I can think of, any help … | |
Re: Set the following property in your classes- [code=css] border: none; padding: 0px; text-indent: -9999px; [/code] Also, try setting the width and height properties on just the 'inputs' without the classes to make them fit. | |
Re: I prefer Notepad++ or jEdit (both free). Their plug-ins make them extremely powerful and helpful for web development, as well as other development languages. | |
Re: There are different settings for different browsers as far as rounded corners go. For instance, here is an example of how to change the corners in firefox. [code=css] #blahblah input { -moz-border-radius: 5px; } [/code] You can even individually set a border radius (-moz-border-radius-topright). You can change the value to … ![]() | |
Hi everyone, For the first time, I've somewhat successfully migrated an html file over to WordPress (not completely finished yet). However, I'm having a problem that I can't seem to fix. On the homepage ([url]www.johnernaut.com[/url]) you can see a 'More...' button at the bottom to preview more posts. This seems … | |
Re: [QUOTE=toetoeag;1240409]how to use http connection in Asp.net. Plase explain me. I want to know stream post in Asp.net pages.[/QUOTE] You'd probably get more help in the ASP.NET forums under 'Web Development' for this question. :P | |
Hi everyone, I'm trying to connect to an IRC server and join a channel. When a user joins they will be greeted by my program. I'm not able to debug it because I'm getting an error saying 'Object reference not set to an instance of an object.' Here's my code: … | |
Re: I'm not sure exactly what your question is. If you're not sure how to start making a site, it's quite simple. Go to File -> New -> Web Site -> ASP.NET Web Site. Your 'Default.aspx' is basically the same thing as an 'index.html,' in that it's the first page people … | |
Re: Is this a 'Telerik' custom control? If so I'm positive you can find the answer via their forums. | |
Re: Stop asking other people to make the code for you. What you're trying to accomplish is very basic and can be learned through the CSS tutorial sites that multiple people have posted in just a few hours. There are also multiple solutions to your problem on Google. | |
Re: This is a useless post... | |
Re: I'm not seeing a horizontal scroll bar, probably because I'm using wide-screen(?) Trying setting your margins to auto so the page is adjusted no matter what the screen size is. Add this into your body code: [CODE]margin:0px auto;[/CODE] | |
Hi, I have looked EVERYWHERE through google, and have found nothing to my avail. I am not trying to find an already existing obfuscation tool, I'm trying to find resources so that I can make my own, because I have completely no idea where to start... Any ideas? | |
Hi, I'm trying to download a file from the web onto my desktop via my form. However, I keep getting a 'Access to the path is denied' error whenever I start the download. I'm using Win7 if that changes anything... Here's where the error occurs: [code=c#] //create a new file … | |
Hi everyone, I'm looking to start prodding around into the world of web development, and I have some minor experience, but I'm not sure what the preferred tools of choice are. I can make basic sites using Microsoft Expression Web Developer, as well as Visual Studio's accommodated ASP.NET. I've found … ![]() | |
I made the following function for my Sudoku solver but the answers keep turning out wrong (some of the numbers are showing as doubles right next to eachother). Can somebody help please? [code=c++] void reduction_candidateLines(void) { /* * declarations */ //drives loop int k, j, x, y, z, t; //counts … | |
Hi everyone. I've got this code that I've been following along with a sample. However, whenever I debug it, I get the error 'XML Exception was unhandled: Root element is missing.' Here's the code I have so far. [code=c#] namespace SpiveyPropertyRental { public partial class Tenants : Form { public … | |
Re: Make a splash that remains open. Set the form border style to none and make it completely transparent. Set the height to full screen and make the width about the same as the scroller bar on Firefox on IE. Trigger a mouse over event to fade in a picture box … | |
Re: If nothing else rename your document to a .zip, open it, extract the xml files, and you can extract the information with the XML classes. However using the MSWord references should be much easier... | |
Hi everyone, I was wondering if daniweb had the intention of, or have even thought about- creating a subforum for Silverlight / WPF development. As a growing and popular technology(ies) I would think it would be a good idea to include these. I am constantly looking to daniweb for help … | |
Re: Serkan you can't leave :( I need the combination of you, scott, dan, ramy, adatapost, and double to answer the wide range of questions I throw out. Who's going to help me out when it comes time to set up a custom installer? Anyways, I wish you the best. l8r | |
Re: [URL="http://lmgtfy.com/?q=Mounting+an+ISO+in+C%23"]http://lmgtfy.com/?q=Mounting+an+ISO+in+C%23[/URL] | |
Re: For password encryption you can use SHA-1. It's actually hashing not encryption, but I think for your purposes it would work fine... [code=c#] public static string EncryptSHA1(string text, Encoding enc) { byte[] buffer = enc.GetBytes(text); SHA1CryptoServiceProvider cryptoTransformSHA1 = new SHA1CryptoServiceProvider(); string hash = BitConverter.ToString( cryptoTransformSHA1.ComputeHash(buffer)).Replace("-", ""); return hash; } [/code] | |
Re: [url]http://www.daniweb.com/forums/thread106408.html[/url] | |
Re: EDIT: Damn, I just realized what was in the title... 'WPF'... lol sorry | |
Re: [URL="http://msdn.microsoft.com/en-us/library/aa325113%28VS.71%29.aspx"]http://msdn.microsoft.com/en-us/library/aa325113%28VS.71%29.aspx[/URL] But you could do something like this... [code=c#] double value = 1.25; string str = Convert.ToString(value); DateTime dt = Convert.ToDateTime(str); textBox1.Text = dt.ToString(); [/code] And make a method to format the string so it displays just the time | |
Re: Hmm, sounds like it has something to do with file / folder permissions. | |
Re: You compare it the exact same way you stored it into the text file with stream writer. Use stream reader to read the contents of the file and compare or compare selected indexes before they are written. | |
Re: Then use the same code; just add in more textboxes. [code=c#] if (string.IsNullOrEmpty(textBox2.Text) || (textBox2.Text.Length < 7)) { errorProvider2.SetError(textBox2, "You must enter at least 7 characters"); hasErrors = true; } [/code] etc... |
The End.