User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 397,861 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,481 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 87
Search took 0.01 seconds.
Posts Made By: blacklocist
Forum: C# Feb 2nd, 2008
Replies: 3
Views: 718
Posted By blacklocist
Forum: C# Jan 31st, 2008
Replies: 4
Views: 555
Posted By blacklocist
Re: Updating a DGV?

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: 555
Posted By blacklocist
Re: Updating a DGV?

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: 558
Posted By blacklocist
Re: Publishing Project

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...
Forum: C# Jan 30th, 2008
Replies: 3
Views: 718
Posted By blacklocist
Reutrn String From Child Form

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: 1,116
Posted By blacklocist
Re: reading a barcode using c sharp

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: 744
Posted By blacklocist
Re: Nee help with sending text to child windows

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 string...
Forum: C# Jan 18th, 2008
Replies: 3
Views: 744
Posted By blacklocist
Re: Nee help with sending text to child windows

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: 1,368
Posted By blacklocist
Re: save GDI+ image into sql 2005 database

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...
Forum: C# Jan 18th, 2008
Replies: 9
Views: 1,767
Posted By blacklocist
Re: Run exe only once on one machine

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: 747
Posted By blacklocist
Re: DataBinding

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...
Forum: C# Dec 30th, 2007
Replies: 6
Views: 1,189
Posted By blacklocist
Re: Using C# with ASP -- First my "Hello World" in ASP

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: 8
Views: 5,032
Posted By blacklocist
Re: How to send am Email using c# ?

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: 1,507
Posted By blacklocist
Re: need code for updating gridview without using sql datasource

Sniff...sniff...sounds like a homework assignment???
Forum: C# Dec 30th, 2007
Replies: 1
Views: 1,738
Posted By blacklocist
Re: Adding in escape characters into a string

Just for clarity can you post a example of the problem string?
Forum: ASP.NET Dec 20th, 2007
Replies: 4
Views: 1,468
Posted By blacklocist
Re: Radiobuttons within Gridview

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...
Forum: Geeks' Lounge Dec 11th, 2007
Replies: 12
Views: 1,839
Posted By blacklocist
Re: does anyone remember Total Annihilation

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: 2,363
Posted By blacklocist
Re: C# failing to drop stored procedure from SQL Server using SMO

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: 2,363
Posted By blacklocist
C# failing to drop stored procedure from SQL Server using SMO

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: 3,583
Posted By blacklocist
Re: Returning Multiple Objects

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: 3,583
Posted By blacklocist
Re: Returning Multiple Objects

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: 3,583
Posted By blacklocist
Re: Returning Multiple Objects

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: 3,583
Posted By blacklocist
Re: Returning Multiple Objects

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: 3,583
Posted By blacklocist
Re: Returning Multiple Objects

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 way...
Forum: C# Oct 2nd, 2007
Replies: 17
Views: 3,583
Posted By blacklocist
Forum: Computer Science and Software Design Oct 2nd, 2007
Replies: 6
Views: 6,997
Posted By blacklocist
Forum: C# Oct 2nd, 2007
Replies: 17
Views: 3,583
Posted By blacklocist
Returning Multiple Objects

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: 2,780
Posted By blacklocist
Re: How to lock a database record/row ?

Sql Server:

http://www.developerfusion.co.uk/show/1688/1/
Forum: C# Oct 2nd, 2007
Replies: 3
Views: 629
Posted By blacklocist
Re: Barcode Problem

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: 540
Posted By blacklocist
Re: C# and .Net 1.0

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: 2,350
Posted By blacklocist
Re: need help with sql database in asp.net using VB

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: 15,836
Posted By blacklocist
Re: How to transfer values between ASP.NET pages

Quick Question Iron_Cross,

why is Cookies better than Application objects? Just curious..
Forum: ASP.NET Mar 25th, 2007
Replies: 8
Views: 1,623
Posted By blacklocist
Re: Making ASP.Net pages better looking

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: 1,623
Posted By blacklocist
Re: Making ASP.Net pages better looking

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.

Thank...
Forum: ASP.NET Mar 20th, 2007
Replies: 3
Views: 1,347
Posted By blacklocist
Re: separate dropdownlist for dates

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: 1,347
Posted By blacklocist
Re: separate dropdownlist for dates

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: 4,499
Posted By blacklocist
Re: Importing excel data to sql server

Try this,

http://www.c-sharpcorner.com/UploadFile/mgold/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET11282005034134AM/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET.aspx
Forum: C# Mar 20th, 2007
Replies: 5
Views: 1,582
Posted By blacklocist
Re: Why my application's Buttons are old fashion?

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: 1,623
Posted By blacklocist
Making ASP.Net pages better looking

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...
Forum: C# Feb 9th, 2007
Replies: 0
Views: 1,245
Posted By blacklocist
GDI+ Bounding Box Idea

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...
Showing results 1 to 40 of 87

 
All times are GMT -4. The time now is 8:42 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC