- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 11
- Posts with Upvotes
- 11
- Upvoting Members
- 9
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
Re: for controls like backspace, del, etc... use this: [code=c#] if (!char.IsDigit(e.KeyChar) && !char.IsControl(e.KeyChar)) e.Handled = true; [/code] :) | |
Re: [QUOTE=rinoa04;562567]You can refer this tutorial in order to help you to start. [url]http://www.w3schools.com/aspnet/default.asp[/url] Try on the basic and simple examples first to grasp the idea.[/QUOTE] How is an ASP.NET tutorial going to help him... | |
Re: This is normal with dreamweaver (at least for me it is). In live view things are usually skewed, especially when working with various CSS styles. That's why I don't pay much attention to it. My advice is to rely solely on the browser. | |
Hi, here's the site I'm currently working on: [code]http://www.johnernaut.com[/code] Under the 'contact' tab I have some behind the scenes C# code that SHOULD send me an email whenever the submit button is pressed and all fields are validated. This isn't working for some reason. The host I'm using is GoDaddy. … | |
Re: I believe this is the C# forum 0.0. You should re-post in the VB forums for correctness and people who can better answer your question. | |
Re: You'd have to inspect the form that you're wanting to submit to and get it's 'name' value and also the location of the 'action' that the form is sending to. Most of the time the form requests data from inputs, like this: [CODE] $_POST['name'] $_POST['email'] [/CODE] Or any other variation … | |
Re: parse the entered string to first find mathematical symbols: '*, ^, +, -, etc,' then have the string parsed for characters that can be translated into math functions; 'square root of 2.' A simple way to display the expression would be to use textboxes and GDI+.. For example, you could … | |
Re: If you don't yet know C#, this will be a very long, grueling process... I suggest learning the language first :P | |
Re: I'm guessing you want to write a program in C++, then convert it into 'Machine Code' so that it can be read by a physical device. If this is really what you want, then the above posters have already answered your questions. Use the above answers to scrape your code … | |
Re: Try this thread: [url]http://www.daniweb.com/forums/thread9921.html[/url] | |
Re: Are you really trying to understand pointers or are you just trying to get someone to explain the copy-and-paste code you found somewhere? As someone in this thread already stated, I'd recommend working on simple programs to get more of an understanding as to how pointers work. | |
| |
Re: In your if statement on line 18, you check to see whether current is less than size, which it is. It then calls somefunction again to increment current by 1. However, 'b' isn't able to be outputted yet because when you call 'somefunction' within your if loop, it brings it … | |
Re: You can use XCode to write C++ applications. You DO have to be registered with Apple to download XCode, but it's free, so I'd suggest you give it a try. Personally, I love XCode. An alternative to that may be the NetBeans IDE. They also have a decent amount of … | |
Re: I know this thread is a few days old, but maybe you haven't figured it out yet. After adding the path to the cygwin bin folder to your environment variables, make sure to restart Netbeans. Also, I'm guessing you used 'setup.exe' to install cygwin. When it takes you to which … | |
Re: Would you mind showing what the error is? I think it's because you call the Accelerator method but nothing is returned out of it because it's set to void, but maybe I'm wrong... Edit: Ancient beat me to it... | |
| |
Re: [url]http://www.make-a-web-site.com/[/url] Please search around before asking extremely general questions like these. If you need specialized help, we're here to help :) | |
Re: Could you be a bit more specific and post the code you're using as well? | |
Re: The hash represents a div 'id'. For example [code=html] <div id="header"></div> [/code] Whereas a '.' represents a class. For example [code=html] <div id="header" class="blah"></div> or <li class="blah"></li> [/code] Id's and classes can reside within any HTML object (as you can see with the li tag). In the code you posted, … | |
| |
Re: You can save your pdf pages as images, and load it that way. Use scroll bars to move it around and make it look like a pdf. | |
| Re: Yes, separate your different 'views' into different php files, because that's essentially what you want. When you click the title of a post you want to go to it's standalone 'view' or 'page' with just the post on it, with a comment box as well. What you can do is … |
Re: 3DBuzz.com has a C# series where they make a text-based maze type game, and even add in graphics later on. You can use the exact same principles from that to do what you're trying to do. | |
Re: CSS uses nothing but containers and styling for existing HTML properties. You can't physically change the size of the image through CSS. For that, you need to do it via the <img> tag directly in your HTML to set width and height values, etc... | |
Re: Since you're going to be connecting HTTP Request, Database exchanges, etc..., I'd recommend going with a high-level language such as ASP.NET with C#. ASP.NET along with C# (or VB) comes with an eccentric library containing all of the classes and functions you'd need for what you're trying to do. If … | |
Re: To develop and distribute apps for the iPhone you have to pay Apple $99 to join as an 'iPhone Development Member.' With that you get access to support forums, distribution, etc... You don't HAVE to have an iPhone to develop iPhone apps, because XCode has an iPhone 'simulator' that will … | |
Re: [url]http://www.lmgtfy.com/?q=what+is+3D+search[/url] | |
Re: Basically there is one image on that header, the CNN logo (and nav animations). Everything can be done via CSS. Just stretch the header 100% of the page and add a background color of red. The search is simply a text box with a button next to it. Since you're … | |
Hi, I have a navigation bar with images as the buttons with no text on them. I'm trying to make a simple slide down menu on hover so people know which pages those images will direct them to: eg 'home', 'about', etc... However, I can't seem to get it to … |