|
More site info...
|
|
Forum profile page for C# on http://www.codeproject.com.
This report page is the aggregated overview from a single forum: C#, located on the Message Board at http://www.codeproject.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "C#" on the Message Board at http://www.codeproject.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on C#:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
217
|
714
|
1,881
|
|
Post:
|
715
|
2,467
|
6,233
|
|
|
C# Posting activity graph:
|
Top authors during last week:
user's latest post:
help me...
Published (2009-11-08 14:55:00)
What are you trying to achieve here ? If you need these things, then you should just buy them. If you've accepted a project to write this stuff, then you deserve what you get, if you have no idea how to do them.
user's latest post:
Copying Data between 2 access...
Published (2009-11-08 10:10:00)
Does the table exist in the target database or do you need to create it too? Are you doing this in a WinForms application? If so, why? I do such things in Windows Services. 0) Open a connection to the source database 1) Get a count of records to copy 2) Use ExecuteReader to get a DataReader for the records to copy 3) Open a connection to the target database 4) Set up a parameterized insert statement for the target connection 5) while (...
user's latest post:
Capturing and redirecting all...
Published (2009-11-07 02:52:00)
It is hard to use google ? http://www.tamirgal.com/blog/Page/SharpPcap-tutorial-a-step-by-step-guide-to-using-SharpPcap.aspx [ ^ ]
user's latest post:
C# Program Being Linked with...
Published (2009-11-08 18:19:00)
Actually 3.0 is a update to 2.0. It runs over 2.0. Thus if you build your project with a machine which have 3.0 installed, it will automatically take it as 3.0 (if not specified explicitly while creating project in VS 2008 IDE). The project you built has taken 3.0 framework.Thus it requires it when running to a machine having 2.0 and crashes. 3.0 is not a new framework, but just an enhancement to 2.0.
user's latest post:
Creating a method hierarchy...
Published (2009-11-07 17:43:00)
If you are using. Net 3.5 you may want to look at the function and action delegates
user's latest post:
Storing Password
Published (2009-11-08 09:57:00)
Yea you're probably right
user's latest post:
LRC calculation... What did I miss?
Published (2009-11-08 03:53:00)
I am amazed that a credit card company is using only LRC - I would have thought at least CRC-16. However, assuming LRC is what they want, then I would be reasonably sure that it is the various conversions that are causing the problem. You are starting with a UTF16, convering it to a byte via UTF7, then back to a char (UTF16) and up to a string (still UTF16) and then back to a byte. I would start with a similar data set from them, and examine...
user's latest post:
icons changind while clicking...
Published (2009-11-05 14:30:00)
I've got a tree view with multiple nodes added during run time and they have different images from image list. But once you start clicking them, they change the image to recent added one. There is somthing to do with SelectedImageKey property. How to disable such changes?
user's latest post:
Transferring items from a...
Published (2009-11-06 07:29:00)
for ( int a = 0 ; a < lstBoxRequests.Items.Count; a++) Is right, your loop: for ( int a = 0 ; a < lstBoxRequests.Items.Count - 1 ; a++) is wrong it leaves one item alone! General: for(int loop=0; loop < count; loop++) or for(int loop=0; loop
|
|
|
|
Latest active threads on C#::
Started 1 day, 1 hour ago (2009-11-09 10:31:00)
by EliottA
Perhaps this would be more soapbox / lounge material, don't you think??
Started 1 day, 1 hour ago (2009-11-09 10:19:00)
by EliottA
I'd suggest debugging. PS Liquid Nitrogen will do also.
Started 1 day, 6 hours ago (2009-11-09 05:33:00)
by Christian Graus
Started 1 day, 3 hours ago (2009-11-09 08:21:00)
by Luc Pattyn
that's three filled circles: big black, medium white, small black.
Started 1 day, 2 hours ago (2009-11-09 09:44:00)
by PIEBALDconsult
Better safe than sorry. I generally use a database, so the GUIDs I generate as primary keys gets checked by the database engine. But, yes, they do get checked and an Exception will be thrown if a duplicate is ever detected. If you are creating your own database, you should perform the check.
Started 1 day, 4 hours ago (2009-11-09 07:22:00)
by Levisaxos
Hey again everyone, I found out it's easy to use a mircbot as between me and my friend for communication Cheers
Started 1 day, 5 hours ago (2009-11-09 06:27:00)
by Luc Pattyn
E_Gold wrote: i know that the process still work, because when i try to do somthing with the zip file, i get error that the file is in use That may well be a wrong conclusion. The one way to know whether a process is (still) running or not, is by looking at the Task Manager's list. Here is what is probably going on: if you want write or delete access (anything other than read access) to a ...
|
|
Hot threads for last week on C#::
Started 2 days, 5 hours ago (2009-11-08 06:48:00)
by Kwagga
It is never a good idea to store a password in plain text. Best is to Encrypt the password and store the encrypted value.
Started 1 week, 1 day ago (2009-11-02 09:25:00)
by Abhishek sur
Are you really using Multicore ?? The thread can only use Multi cores if its run using Parallel Extension. Its there if you add the Threading.dll that comes with the extension pack. Otherwise, the process can run in a single core.
Started 1 week, 1 day ago (2009-11-01 18:42:00)
by Christian Graus
You could write a timer, then write a loop that sends the data over and over, and turn it off when the timer fires, if you send the data on another thread. That's assuming that the data gets sent once, that it's not a switch you turn on or off. That's how it worked when I worked with the serial port, you'd turn the pin on, set a timer, then turn it off again.
Started 2 days, 21 hours ago (2009-11-07 15:07:00)
by Christian Graus
By web app, you mean a windows app that works with the web ? Your app is not ASP.NET, right ? ninjatruck wrote: I am new to C#, This is an odd task for someone who is 'new to C#'. How new is new ? What other languages do you know ? Why are you writing this right now ?
Started 5 days, 20 hours ago (2009-11-04 15:13:00)
by PIEBALDconsult
Should the thread be spun off in the constructor? And why have the constructor protected rather than private?
Started 4 days, 5 hours ago (2009-11-06 07:09:00)
by stancrm
Just check the dataset. In this case, your dataset is s. if(s.Tables.Count > 0 && s.Tables[0].Rows.Count > 0) { //... }
Started 1 week, 1 day ago (2009-11-01 15:24:00)
by Christian Graus
What is an equivalance ? You either draw it yourself or you use a charting library. I believe Microsoft offer one now, and there's others about that are free, which I assume is your preference.
Started 1 week, 1 day ago (2009-11-02 02:32:00)
by Christian Graus
Yes, you do need help. What are you trying to do ? Your approach is both wrong and ugly. A method is going to be in the scope of a class. Anything inside {} is inside a method, once you're past the class scope. That's how I'd work it out, as well as looking for optional specifiers such as private, a method name, brackets and variable names inside ( plus no semicolon at the end ).
Started 2 days, 15 hours ago (2009-11-07 20:35:00)
by Christian Graus
It is physically impossible to access a camera without DirectX or WIA. Why ? Because web cams did not exist when Windows was created, these are things that have been added to Windows to add the ability to access these peripherals.
Started 2 days, 20 hours ago (2009-11-07 16:10:00)
by PIEBALDconsult
I'm not sure what you're describing. In C# you can declare classes within classes, but you can't declare methods within methods.
|
|