- 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
101 Posted Topics
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 … | |
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... |
The End.