Forum: C# Feb 2nd, 2008 |
| Replies: 3 Views: 1,757 |
Forum: C# Jan 31st, 2008 |
| Replies: 4 Views: 1,012 Well you references look good. Have you personally tried the code alostdruid posted? If so did you get errors on the two lines that he commented? |
Forum: C# Jan 30th, 2008 |
| Replies: 4 Views: 1,012 Well I don't know why they throw errors (look fine to me) but I always added one more line of code.
try
{
SqlDataAdapter da = new SqlDataAdapter();
... |
Forum: C# Jan 30th, 2008 |
| Replies: 2 Views: 1,392 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... |
Forum: C# Jan 30th, 2008 |
| Replies: 3 Views: 1,757 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... |
Forum: C# Jan 30th, 2008 |
| Replies: 2 Views: 4,588 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... |
Forum: C# Jan 18th, 2008 |
| Replies: 3 Views: 1,782 Okay I had time to get some code for you.
First you need to create the class Game or whatever you wish to call it. Feel free to add different properties.
class Game
{
private... |
Forum: C# Jan 18th, 2008 |
| Replies: 3 Views: 1,782 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. |
Forum: C# Jan 18th, 2008 |
| Replies: 3 Views: 3,107 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.
... |
Forum: C# Jan 18th, 2008 |
| Replies: 11 Views: 5,779 Also if you want to shell out some cash (which I hate to do) you can use the .Net Reactor.
http://www.eziriz.com/products.htm
Then you can actually use licenses and such and it's perfect for... |
Forum: C# Dec 30th, 2007 |
| Replies: 2 Views: 1,440 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
... |
Forum: C# Dec 30th, 2007 |
| Replies: 6 Views: 2,925 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. |
Forum: C# Dec 30th, 2007 |
| Replies: 11 Views: 16,089 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... |
Forum: C# Dec 30th, 2007 |
| Replies: 1 Views: 3,136 Sniff...sniff...sounds like a homework assignment??? |
Forum: C# Dec 30th, 2007 |
| Replies: 1 Views: 4,432 Just for clarity can you post a example of the problem string? |
Forum: ASP.NET Dec 20th, 2007 |
| Replies: 5 Views: 5,369 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.... |
Forum: Geeks' Lounge Dec 11th, 2007 |
| Replies: 12 Views: 3,001 Actually I am happy to tell you all that some programmers still keep TA alive. They redone the entire game with a new graphics engine.
http://spring.clan-sy.com/
Free download and still quite a... |
Forum: C# Oct 18th, 2007 |
| Replies: 1 Views: 4,514 Man this sucks. It's always after I post a question I then answer it. You have to use the spNew.Refresh(). It believe it asks the SQL Server the current status of the stored proc. Then you are... |
Forum: C# Oct 18th, 2007 |
| Replies: 1 Views: 4,514 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.... |
Forum: C# Oct 9th, 2007 |
| Replies: 17 Views: 9,936 Yes I completely agree not efficient by any means. I wasn't thinking quite straight when I asked the question but now after the feedback I have received there are always more than one way to do... |
Forum: C# Oct 7th, 2007 |
| Replies: 17 Views: 9,936 1. If C# supported multiple return from functions in my mind I would imagine it to go something like this.
string strString1 = this.ReturnTimeDate(1);
string strString2 =... |
Forum: C# Oct 6th, 2007 |
| Replies: 17 Views: 9,936 There is always more then one way to do anything. For certain situations it will fit the need. |
Forum: C# Oct 5th, 2007 |
| Replies: 17 Views: 9,936 That is so sly but makes perfect sense. I knew about ref and out but was thinking too small as in 1 variable. Bad on my part.
Thx |
Forum: C# Oct 3rd, 2007 |
| Replies: 17 Views: 9,936 Thx
I have concluded that if you have to return multiple values from a function that is called your probably didn't think something logically correct to begin with.
Rather than trying to find a... |
Forum: C# Oct 2nd, 2007 |
| Replies: 17 Views: 9,936 |
Forum: Computer Science Oct 2nd, 2007 |
| Replies: 6 Views: 12,274 |
Forum: C# Oct 2nd, 2007 |
| Replies: 17 Views: 9,936 Hi All,
I have a question and can't seem to find a answer anywhere. A normal function can void or return a object.
public void CoolFunction()
{
//Some Code
} |
Forum: C# Oct 2nd, 2007 |
| Replies: 2 Views: 7,481 Sql Server:
http://www.developerfusion.co.uk/show/1688/1/ |
Forum: C# Oct 2nd, 2007 |
| Replies: 3 Views: 1,324 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... |
Forum: C# Oct 2nd, 2007 |
| Replies: 6 Views: 883 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... |
Forum: ASP.NET Mar 25th, 2007 |
| Replies: 5 Views: 3,436 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 |
Forum: ASP.NET Mar 25th, 2007 |
| Replies: 4 Views: 19,874 Quick Question Iron_Cross,
why is Cookies better than Application objects? Just curious.. |
Forum: ASP.NET Mar 25th, 2007 |
| Replies: 8 Views: 2,413 It so seems that AJAX goes far and beyond to stuff that you normally don't see for a normal webpage. I also found I guess the codename for AJAX and ASP.Net is Atlas. I was the book store the... |
Forum: ASP.NET Mar 23rd, 2007 |
| Replies: 8 Views: 2,413 Wow thank you both. Ajax was something I already read and heard about but thought it was something that I have to purchase.
Also the website looks wild and nothing like a standard asp page.
... |
Forum: ASP.NET Mar 20th, 2007 |
| Replies: 3 Views: 2,072 I also forgot to say that is you need a code example I will be more than happy to post it. |
Forum: ASP.NET Mar 20th, 2007 |
| Replies: 3 Views: 2,072 Here is this
http://www.daniweb.com/techtalkforums/thread33190.html
Also make sure you do a mm/dd/yyyy format.
Ever thought about using the calender web control? |
Forum: C# Mar 20th, 2007 |
| Replies: 2 Views: 8,864 Try this,
http://www.c-sharpcorner.com/UploadFile/mgold/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET11282005034134AM/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET.aspx |
Forum: C# Mar 20th, 2007 |
| Replies: 5 Views: 2,360 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... |
Forum: ASP.NET Mar 20th, 2007 |
| Replies: 8 Views: 2,413 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... |
Forum: C# Feb 9th, 2007 |
| Replies: 0 Views: 2,231 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... |