- Strength to Increase Rep
- +11
- Strength to Decrease Rep
- -2
- Upvotes Received
- 49
- Posts with Upvotes
- 45
- Upvoting Members
- 33
- Downvotes Received
- 13
- Posts with Downvotes
- 9
- Downvoting Members
- 10
Senior Software Architect
- Interests
- .NET Programming, ASP.NET, CommunityServer
Re: gummi bears -> Mr. Bear (my little cute cuddly teddy bear) | |
Re: [QUOTE=oO snObOardr Oo]MSN messenger (Beta 6.0)[/QUOTE] Well, MSN Messenger 6 Final is out. Consider upgrading to a released version. Beta software is "use at your own risk" and may have problems. Your issue might have been fixed in the final release.. | |
There are a lot of members of Daniweb who run their own websites, and even many members who run SEO firms. I've given SEO a lot of thought, and I can only conclude this: [b]SEO is totally unethical. At it's foundation, all you are doing is artificially effecting your search … | |
Somehow, I think my OS X is borked. Whenever you mouseover a menu, it's supposed to highlight, right? Well, mine doesn't... Also, my dock magnification is turned on, but if I highlight apps on my dock, they don't magnify, and it doesn't say the apps name above its icon. If … | |
Re: I'm pretty sure the Windows 98 CD is bootable. Try adjusting your VMWare BIOS (by pressing the DEL key on startup.. I think) to boot off the CD. | |
Re: This forum system is called vBulletin, and it is written in PHP. The 'nicest' ASP.NET forum system is written by the ASP.NET guys at Microsoft (and I've contributed too), called the ASP.NET Forums. [url="http://forums.asp.net/"]http://forums.asp.net/[/url] | |
Re: You should override the Navigating event of the browser control. You're going to have to figure out when the URL is the download url (the file name might change, but it might be in a certain path or something), and cancel the navigation, then download the url with the WebClient … | |
Re: Hey Mr Gates, I'm a big fan of yours :-). Adobe Photoshop is written in straight C++. Although C++ is an extremely powerfull language, it has a very steep learning curve. C++ has GUI features, consult the links section for some help. When in doubt, google searching works wonders. Photoshop … | |
Re: That really does sound like a Etch-a-Sketch! Joking aside, I would contact Toshiba. Sounds like your LCD has some serious problems ;-). | |
Re: Just a reminder to the new ASP.NET Programmers: your web.config file [b]is [/b]case-sensitive, so be careful copying the text :). | |
Re: I'm 99% sure that this requires no code - its in the properties window for the form :-). | |
Re: I have been using MonoTouch and MonoDroid for quite some time and you are right; it is a revolution! Android screens are known as an Activity. You already have one (that is what is showing the UI for your app right now), so all you need to do is add … | |
Re: Windows 8 rocks. Have you ever used a Windows 8 machine with a touchscreen? It's a life changing experience. (Sent from my Microsoft Surface) | |
Re: What database engine are you using? SQL Server? Microsoft Access? MySQL? Are you just using ADO.NET's DataTable? | |
Re: For the C# users in this thread, all you need to do is use RestSharp. It will handle the API rather nicely. Here is some sample code to use the WhoAmI method: var accessToken = "use the documentation to learn how to get this"; var client = new RestClient("http://www.daniweb.com/api"); var … | |
Re: Check out the documentation for String.Split: http://msdn.microsoft.com/en-us/library/b873y76a.aspx | |
Re: You can put the date of birth in a DateTime, and then use the dates in this wikipedia article, [url]http://en.wikipedia.org/wiki/Zodiac_sign#The_twelve_signs[/url], to calculate what zodiac sign the date falls in. | |
Re: Okay, in response to your first question, it is ALWAYS better to use & when connecting strings. For your second, you would need to declare an integer or something on top of the forms codebehind (in the general declarations area) and use it as a counter. Then you can have … | |
Re: I'm an owner of Adobe Acrobat 5.0, and I swear my life by it. The way we create PDF files with Acrobat 5 is by printing to an Actobat Printer. In theory, you would need to create a little program that captures the screen and prints it to the PDF … | |
Re: I think I'm missing something... [b]Where is your question? [/b]hehe | |
Re: As a web developer trying to become a web desiginer, I find your article very accurate. I love that simple look, white background, blue links! But, I'm trying hard! | |
Re: Just be aware, that while it does support most of ASP.NET, some parts are lacking, and some parts are missing. My CMS, #Portal, does not run on mono, because of its lacking Mobile device support (the System.Web.Mobile namespace). But, I'm happy to say I have Mono working great on Mac … | |
Re: Okay, I'm not a java guy but I do some of it. I use Borland JBuilder Personal (free), and I like the IDE, but it is sluggish (Java based). My school uses JCreator, but I'm not that fond of it. For text editing, I use UltraEdit32. It handles every file … | |
Re: Which line did you get the error on? I really haven't worked with the image data type before (i usually store an uploaded image on the server's file system), but I can play with it ;). | |
The site I do a lot of work for, [url="http://bink.nu"]Bink.nu[/url], has three ways of getting to the content: [url="http://bink.nu"]http://bink.nu[/url], [url="http://www.bink.nu"]http://www.bink.nu[/url], and [url="http://winxp.bink.nu"]http://winxp.bink.nu[/url]. [url="http://bink.nu"]http://bink.nu[/url] = PR7 [url="http://www.bink.nu"]http://www.bink.nu[/url] = PR6 [url="http://winxp.bink.nu"]http://winxp.bink.nu[/url] = PR6 Keep in mind, all of those URLs are the exact same website. Would it be beneficial to get rid … | |
Re: [QUOTE=cscgal]Can someone please explain to me the difference between ++i and i++ when written as part of an expression (i.e. within loops and if statements) ? Thanks :)[/QUOTE]//Lets declare i, and set it equal to 4. int i = 4; //Now say their is a function nammed goFetch(int), and we … | |
Re: Partiton Magic would resize your partition, but not with Windows Server 2003 installed. It checks the OS installed on the drive (even if you boot up on the disk) and if you are running a server os, it won't let you run it. Instead, they want you to run their … | |
Re: I'm running Chrome version "12.0.742.30 dev" and the dropdowns also work fine for me. | |
Re: I don't actually think this is possible. And everyone, PHP is never compiled. It is a scripting language; therefore it is interpreted (at runtime). A web language like ASP.NET is fully compiled (at the page's first view or at design time into a managed dll file). |