No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
53 Posted Topics
Re: If your using a Console app it should be string strTemp = Console.Readline() | |
Re: [QUOTE=chrisbliss18] I think I went a bit overboard, but I hope I helped your understanding.[/QUOTE] Ahh no, you can never go overboard on explaining stuff. Nice work! :cheesy: | |
Re: Sniff...sniff...sounds like a homework assignment??? | |
Hi, I am importing data from excel (don't know yet I am going to do that) and export it back into excel. I don't want to have users to import data using excel (due to lack of intelligence) and also it would be faster and more streamline. I already had … | |
Re: I did a little project attempting to build my own little mp3 player that listened for keys like ctrl+alt+n for next. All the things I found to play a MP3 looked like it needed C++ so I moved to another project due to time constraints. Anyways what I did is … | |
Re: I have actually seen what 1qaz2wsx7 is talking about. It's actually pretty cool. I first saw it at work when a end user needed some help. She was using a Access DB that on one of the forms would actually open up Lotus Notes and fill in the Recipient, Subject … | |
Re: I do agree with you, what are they really teaching. I start college in two weeks. I had done like 99% of the coding I know by myself. What really shocked me what my friend going to some college in Indiana. He is going to be a game devoloper. He … | |
Re: Here is two websites for you that will answer your questions (I hope). This will get you familiar with using SQL DataSource. Which I think you already know. [URL="http://www.codersource.net/asp_net_gridviewcontrol.aspx"]http://www.codersource.net/asp_net_gridviewcontrol.aspx[/URL] This website is going to show you how to use controls inside a GridView. The tutorial is specific on checkboxes. [URL="http://www.asp.net/learn/data-access/tutorial-52-vb.aspx"]http://www.asp.net/learn/data-access/tutorial-52-vb.aspx[/URL] … | |
Re: Also if you want to shell out some cash (which I hate to do) you can use the .Net Reactor. [URL="http://www.eziriz.com/products.htm"]http://www.eziriz.com/products.htm[/URL] Then you can actually use licenses and such and it's perfect for commercial software. | |
Hi All, I have a question and can't seem to find a answer anywhere. A normal function can void or return a object. [CODE] public void CoolFunction() { [INDENT]//Some Code[/INDENT] }[/CODE] I know you can do this. [CODE] public int ReturnOneObject() { [INDENT]return intNumber[/INDENT] }[/CODE] What I can't find or … | |
Hi All, I am having this issue and don't really know a good way to overcome it. I have a main form. With a click of a button another form is created. For the example let's just say it has a simple text box. You type whatever you want in … | |
Re: I assume this is a ASP.Net project? What I did was have my dev computer and the full blown IIS Webserver. After I made sure everything was perfect (code wise) on my dev machine and simply did a copy website via ftp to the Webserver. Also if you are trying … | |
Re: [QUOTE=alostdruid;521046]From all the examples i have seen this is the best i could come up with [code] [INDENT]try[/INDENT] { SqlDataAdapter da = new SqlDataAdapter(); da.SelectCommand = new SqlCommand(searchQuery, conn); DataSet ds = new DataSet(); conn.Open(); //da.Fill(ds); //dataGridView1.DataSource = ds; } catch { MessageBox.Show("error" + e); } [/code] the two commented … | |
Re: If you are using a barcode scanner usually the scanner itself will translate the physical barcode into a stream of numbers. From there depending on type of barcode scanner it will bring the information in through a comm port or will simply emulate a keyboard and type it into the … | |
Re: Define all of your games as classes. Then pass the class to your child window and have the child window read the value of the class and display them. Can't do a code sample for you right now. | |
Re: Simple, save the image as a picture format and then upload it to the sql server in a BLOB format. While using GDI+ check this website you on how to save images. [URL="http://www.devx.com/.net%20zone/Article/10031/0/page/5"]http://www.devx.com/.net%20zone/Article/10031/0/page/5[/URL] Atleast this should get you going. | |
Re: What do you mean by "forcing a default gateway", you mean actually giving it a static gateway or something else? | |
Re: When I first got my Windows Mobile 5 phone I was so excited I could program on it with C#. I started poking around to see what I could do I can came across this guy on Channel9 [URL="http://channel9.msdn.com/ShowPost.aspx?PostID=209462"]http://channel9.msdn.com/ShowPost.aspx?PostID=209462[/URL] There is a couple of screencasts about other things like using … | |
Re: [QUOTE=complete;494603] aspnet_regiis -i[/QUOTE] So many times have I redone my dev machine and couldn't figure out why IIS wasn't working right. Then I forgot this little step and I feel 1 inch tall. | |
Re: Just for clarity can you post a example of the problem string? | |
Re: [QUOTE=damdirtyape]For some reason I felt like playing again after 10 or so years. No one at school every really played it. Just wondering if anyone here ever played it[/QUOTE] YES I DO, my friend actually introduced it to me (I'm 18) about two years a go. I still think it's … | |
Hi all, I have been trying to drop a stored proc for sometime using SMO. I can create with ease but can't seem to drop. Any ideas? I thought it might be permission but for testing used SA account. No luck... [CODE] private void btnCreate_Click_1(object sender, EventArgs e) { SqlConnection … | |
Re: If you are running Active Directory and have the ability to assign GPO(Group Policy Objects) just add the .Net 2.0 MSI under the Software Installation on the Computer Configuration. When the user turns the computer on or restarts it will install it with out user intervention. This is how I … | |
Re: Sql Server: [url]http://www.developerfusion.co.uk/show/1688/1/[/url] | |
Re: I know that certain barcode scanners will only support certain barcodes. Example, the more you paid for usually the more it reads. Also I think there is even 3D barcodes like UPS uses. Also try to Code 39 - it seems to be very standard with barcode readers. | |
Hi all, I have been writing several ASP.Net projects and they all turn out fine and run dandy. When I look at them it still seems like something is missing. It has no appeal at all, looks like I just wanted to do the web controls and jump right into … | |
Re: Quick Question Iron_Cross, why is Cookies better than Application objects? Just curious.. | |
Re: I would serriously look into the webdevolper express. I think you will fall in love with it plus it just makes everything much more organized. Just my two cents | |
Re: Here is this [URL="http://www.daniweb.com/techtalkforums/thread33190.html"]http://www.daniweb.com/techtalkforums/thread33190.html[/URL] Also make sure you do a mm/dd/yyyy format. Ever thought about using the calender web control? | |
Re: Try this, [URL="http://www.c-sharpcorner.com/UploadFile/mgold/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET11282005034134AM/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET.aspx"]http://www.c-sharpcorner.com/UploadFile/mgold/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET11282005034134AM/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET.aspx[/URL] | |
Re: One thing too is for me on my XP setting I have all the flash appearances fancy shading turned off to gain the extra performance. When all the setting are turned up in XP you will get the cool looking buttons. Ran my app on another machine and was like … | |
Hi All, Well I am for the first time messing with GDI+ and figured it's what I need to do for my project. I have been drawing shapes and pens and filling them in sorta like paint but I would like to be able to draw a bounding box around … | |
Re: I was a little afraid to answer this with my own knowledge cause my answer would be wishy washy. Namespace: [url]http://msdn2.microsoft.com/en-us/library/0d941h9d(VS.80).aspx[/url] Classes: [url]http://www.devarticles.com/c/a/C-Sharp/Introduction-to-Objects-and-Classes-in-C-sharp/1/[/url] From what I have got and part of what I know is classes contain objects. I was taught a class is a blueprint for objects. (Which you … | |
Re: Wow, I think we solved our energy problems. No more fossil fuels. We can no wipd out the Wax reserves of the planet. lol Seen lemons but not candles and going to have to give it a try. | |
Re: [URL="http://www.cisco.com/en/US/products/hw/routers/ps221/products_installation_guide_chapter09186a008007e57a.html"]http://www.cisco.com/en/US/products/hw/routers/ps221/products_installation_guide_chapter09186a008007e57a.html[/URL] Arrow down to "Resetting the Router" | |
Hi all, Well I was applying updates in my WSUS and wasn't really paying attention and let IE7 out of pandora's box. No I am really regretting it. Does anyone know of a script to uninstall IE7. My first idea was to write a script and deploy through GPO. The … | |
Hi All, I know how to use threads in code but in practice I am trying to make clear. How do you make a good multithread application (Windows App). Do you: 1. Have the main thread run the form objects and create new windows while other threads actually do calculation … | |
Hi All, Well it's now 8:49 and have been at work for twelve hours and it starting to show. While I was going to copy a website to my webserver for some reason I though hey why not click the checkbox "Connect using Secure Sockets Layer". I then hit open … | |
Re: I am trying to understand cause yes you did include lots of info but that is good :). You have some values your want submit to a DB. Once you submit the data into a new row you want to retreive the Row GUID you just inserted? | |
Hi all, Well I am still new to sql to getting better and better with each query. Now this one has me completley stumped. Here is the query [CODE] SELECT * FROM MOTORS WHERE (CHKCANCEL = '0') AND (DITD IS NULL) AND (CUSTOMERID = '52') OR (CUSTOMERID = '62') OR … | |
Hi All, I am writing this just to even know if this is possible. What I would like to do is a UnGroup. Crap this is so hard to explain...okay I have a table in sql that is five columns long. The first Column is, ohh never mind. Copy and … | |
Hi All, I am extremley mad right now. I had a desktop machine and installed Win2k3 and put SQL server and IIS on it. It ran perfectly but just slow. So I managed to buy a new beast. It's really sweet and was in the process of migrating over. I … | |
Hi All, Well I have been looking all over the dang internet and haven't found something that fits me. First is I have two nic cards in my computer. One is hooked up to a NAT/firewall then right on the internet. I second is connected to a LAN that has … | |
Re: Here is just a simple idea, not even for sure if it's possile. Make a windows ce 5.0 app that will pick up all the wireless networks in range and locate them out on a map. Sorta like a radar but for wireless hubs Just an idea... | |
Hi all, I am having a wee bit trouble with with the SQL Command Builder. It does not build anything but frustration. From all the books I have read and everything this is how you go about updating changes from dataset or datatable without writing your own updating logic. Build … | |
Re: What has probably happened is ZoneAlarm is blocking your FTP port. Port 21 I did a quick google and found a set of insturctions to add the FTP address to allow zone alarm to let FTP work. Now this is assuming that the FTP server is on your local lan … | |
Re: Just as pcbuddha said you need switches. If you have 32 computers is each computer lab all those should be hooked up to a switch. Now if you really want fast make sure the switch has fiber. Run fiber back into a server room or central place. This way your … | |
Hi All, Well once again I go round and round with IIS. I have got it to run with a little tweaking with ASP 1.1v but I can't get it to run with ASP 2.0. Here are the variables: Server Hosted on IIS 6.0 Running Windows 2k3 Server Not a … |
The End.