101 Posted Topics

Member Avatar for fourty

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 …

Member Avatar for fourty
0
72
Member Avatar for papanyquiL

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 …

Member Avatar for pwinfrey
0
163
Member Avatar for levsha

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.

Member Avatar for papanyquiL
0
139
Member Avatar for dinomark

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.

Member Avatar for papanyquiL
0
100
Member Avatar for ryy705

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 …

Member Avatar for diafol
0
257
Member Avatar for papanyquiL

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 …

Member Avatar for papanyquiL
0
86
Member Avatar for abcdabid

[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

Member Avatar for papanyquiL
0
89
Member Avatar for papanyquiL

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

Member Avatar for papanyquiL
0
136
Member Avatar for CMSHelper

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 …

Member Avatar for papanyquiL
0
169
Member Avatar for sureshrajanmca

Is this a 'Telerik' custom control? If so I'm positive you can find the answer via their forums.

Member Avatar for papanyquiL
0
64
Member Avatar for furqan219

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.

Member Avatar for papanyquiL
1
120
Member Avatar for rhotes4
Member Avatar for Mapper99

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]

Member Avatar for drjohn
0
165
Member Avatar for papanyquiL

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?

Member Avatar for ghimangi
0
96
Member Avatar for papanyquiL

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 …

Member Avatar for penglund
0
129
Member Avatar for papanyquiL

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 …

Member Avatar for rajarajan2017
0
130
Member Avatar for papanyquiL

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 …

Member Avatar for mrnutty
0
155
Member Avatar for papanyquiL

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 …

Member Avatar for sknake
0
142
Member Avatar for dima shawahneh

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 …

Member Avatar for papanyquiL
0
85
Member Avatar for MxDev

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...

Member Avatar for avirag
0
3K
Member Avatar for papanyquiL

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 …

Member Avatar for jbennet
0
95
Member Avatar for serkan sendur

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

Member Avatar for jasimp
-2
371
Member Avatar for metalla_nz

[URL="http://lmgtfy.com/?q=Mounting+an+ISO+in+C%23"]http://lmgtfy.com/?q=Mounting+an+ISO+in+C%23[/URL]

Member Avatar for metalla_nz
0
471
Member Avatar for facadie

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]

Member Avatar for Geekitygeek
0
215
Member Avatar for chathuD
Member Avatar for sknake
-1
245
Member Avatar for franceee

EDIT: Damn, I just realized what was in the title... 'WPF'... lol sorry

Member Avatar for DdoubleD
0
142
Member Avatar for procomp65

[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

Member Avatar for procomp65
0
3K
Member Avatar for danielschealler
Member Avatar for facadie

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.

Member Avatar for facadie
0
2K
Member Avatar for facadie

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...

Member Avatar for facadie
0
105

The End.