Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #10.5K
Ranked #4K
~3K People Reached
Favorite Forums
Favorite Tags

18 Posted Topics

Member Avatar for reaven

Agree with Momerath. Dont use a windows service to constantly poll the time and deicde if action should be taken, this would chew up resouces for the other 23hours 59mins and 58seconds that your not actually doing anything with the permissions etc. why would you need to control access to …

Member Avatar for reaven
0
113
Member Avatar for cristine.y07

Have a look at this: http://www.codeproject.com/Articles/4416/Beginners-guide-to-accessing-SQL-Server-through-C

Member Avatar for M.Waqas Aslam
0
87
Member Avatar for damaritah1

You can use the built in report control, available via the toolbox in vs. You drag the control on to a form and set its target report to an instance of an .rdlc file. Alternatively you could use crystal reports or SQL server Reporting Services (SSRS) or even a custom …

Member Avatar for Randlathor05
0
93
Member Avatar for c#_fem

A WCF service is available via its endpoint. if service a knows service b endpoint it can create a channel via channelfactory and call the service via a proxy. Also, Look into the Discovery binding.

Member Avatar for Randlathor05
0
177
Member Avatar for MasterHacker110

Look into Mono framework... Ultimately if you compile a .net application it references (at a minimum) system.core from the framework. Therefore you need the .net framework installed in order to run it... vote me up if it helped....

Member Avatar for VatooVatoo
-1
153
Member Avatar for Percival07

I would start with getting your requirements down on paper. Then using these, you need to identify your key classes (nouns), followed by the resposibilities (verbs) of each. Then put together some sample code, and post back here to get answers to more specific questions.... look into UML.

Member Avatar for Sunny.W
0
129
Member Avatar for Farhad.idrees
Member Avatar for Momerath
0
106
Member Avatar for ScottFountaine

Why not use a direction property, then if collision() is true, you can change direction and decrease the x /y away from the wall?

Member Avatar for Randlathor05
0
124
Member Avatar for eoop.org

Look into the following... http://msdn.microsoft.com/en-us/magazine/cc136756.aspx also look at a domain specific language http://www.codeproject.com/Articles/26975/Writing-Your-First-Domain-Specific-Language-Part-1 vote if it helps ya...

Member Avatar for Randlathor05
0
171
Member Avatar for Sweety12

fully working example http://www.codeproject.com/Articles/12286/Simple-Client-server-Interactions-using-C vote if it helps ya...

Member Avatar for Randlathor05
0
236
Member Avatar for fafa.gagga

I think you are refering to property accessors. public class myclass { // auto implemented. i.e no backing field public string mystring {get;set;} //or // backing field and seperate get set accessors private string _astring = string.empty; public string astring{ get{ return _astring;} set{ _astring = value;} } } vote …

Member Avatar for Randlathor05
0
190
Member Avatar for Percival07

There are many frameworks that support webcams. xna is one of them. you will need to copy the image from the screen into a bitmap before you serialize into your database. check out this example... http://www.codeproject.com/Articles/2303/WIA-Scripting-and-NET

Member Avatar for Randlathor05
0
60
Member Avatar for solarissf

Sounds like a cross threading issue, look into timercallbacks, and asynchronous processing. Without the actual code its hard to debug a theoretical model...

Member Avatar for Randlathor05
0
232
Member Avatar for jtodd

What about the value member? comboBox1.DisplayMember = "Name"; comboBox1.ValueMember = "Name";

Member Avatar for Randlathor05
0
98
Member Avatar for saitej

Ill try posting again as the last one is nt showing? you could try formatting times and dates like so... DateTime thisDate1 = new DateTime(2011, 6, 10); Console.WriteLine("Today is " + thisDate1.ToString("MMMM dd, yyyy") + "."); notice the single quotes in the example below... private void MakeDataView() { DataView view …

Member Avatar for Randlathor05
0
113
Member Avatar for lianpiau

Cant you calulate this value and add it to your datasource before you bind to the grid?

Member Avatar for Randlathor05
0
67
Member Avatar for onlineboy18

The first step is to get the image uri into your code. you can do this using a filebrowserdialog and read the selectedpath when the dialog result == ok. Once you have the uri you either create an in memory bitmap and load the image into this structure, and then …

Member Avatar for Randlathor05
0
166
Member Avatar for Farhad.idrees

Use Select max(id) from tblemployee , to get the highest id column..

Member Avatar for Randlathor05
0
199

The End.