|
More site info...
C# Programming | Forum profile
|
|
Forum profile page for C# Programming on http://www.cprogramming.com.
This report page is the aggregated overview from a single forum: C# Programming, located on the Message Board at http://www.cprogramming.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# Programming" on the Message Board at http://www.cprogramming.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# Programming:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
12
|
43
|
102
|
|
Post:
|
37
|
111
|
235
|
|
|
C# Programming Posting activity graph:
|
Top authors during last week:
user's latest post:
Need help urgent with error!!
Published (2010-03-15 15:06:00)
Hmm... tricky. The code you show is essentially correct, although malformed in my opinion. Anyways, as the runtime error implies, Int32.Parse() string argument cannot be null. Console.ReadLine() will return null if no lines can be read. But the only way for this to actually happen is for someone to terminate entering text with CTRL+Z, instead of ENTER. My guess is Mono is not respecting this and a null reference is being returned when the...
user's latest post:
"Invisible" &...
Published (2010-03-16 09:13:00)
Indeed, as I said in the original post, I'd done that whilst testing, (and for display to some newbies), but it is necessary to remove the duplication before writing to the xml file.
user's latest post:
Indexer question...
Published (2010-03-16 21:28:00)
Thank you Cat. I see now where I was going wrong.
user's latest post:
Need help urgent with error!!
Published (2010-03-15 15:42:00)
found it sorry, were so many options windows Thanks mate, it worked, very much appreciated!
user's latest post:
Need help urgent with error!!
Published (2010-03-15 15:39:00)
Quote: Originally Posted by Tiglet I'm running monodevelop 2.2 and it doesn't seem to have that option vart? Any help on that? Thanks already guys! my is 2.0 what about compiling the executable and running it from terminal and not from the IDE?
user's latest post:
Indexer question...
Published (2010-03-16 01:41:00)
Quote: Originally Posted by stumon That still wont work. Lets use a baseball game for example. A baseball game would be a class and it has Innings, so those innings would be a class with seperate methods to access the top or botton of the inning, with scores, etc. Well a baseball game would have more than 1 inning, so I want to use a List<Innings> variable (keeping it private), but I want that variable to have a public...
user's latest post:
Indexer question...
Published (2010-03-16 07:08:00)
Quote: Originally Posted by Cat Yes, at first it seems like it adds a lot of overhead, it adds an additional class to the mix, but that class consists of code you'd already need -- code to index and iterate your collection -- and it keeps all that code in one place, separated from everything else. Exactly. Indexed properties have their failings: you can't enumerate over them and you can't ask for a count to know which indices...
user's latest post:
Temporary lock file access in .net
Published (2010-03-08 08:43:00)
Hi, I'd like to know if there is an elegant way in .net for temporarily locking the access to a set of files to other users. I can handle (copy, move etc.) something like 100 files in one shot, the files being given with wildcards in path name, so I need a simple way to process all the files and provide transaction integrity. Thanks
user's latest post:
List is lost when Form is not...
Published (2010-03-11 21:16:00)
Hello there I'm trying to make an editor with Visual C#, and storing the data in the Form in List<T> variables. Problem is, when I change the active window while the editor is running, or I open up in the editor a new Form, the data in my Lists is lost. What am I doing wrong?
user's latest post:
"Invisible" & sign.
Published (2010-03-12 06:37:00)
The &-char is used to indicate that the following char is used for keyboard shortcuts. "&Next" would spell "Next", once you press Alt, it would be " N ext" and pressing "N" on the keyboard would select this action.
|
|
|
|
Latest active threads on C# Programming::
Started 4 days, 21 hours ago (2010-03-13 22:11:00)
by stumon
Is there a way to implement an Indexer on a class member and not the class itself?
This is strictly for code readability because I would like the idea of having an Indexer property of a variable within a class.
An Example would be Code: public class MyClass
{
private List<PlayerClass> player = new List<PlayerClass>();
public PlayerClass Player[int ...
Started 6 days, 13 hours ago (2010-03-12 06:19:00)
by Fossaw
I can't cut/paste because the machine with the IDE is not connected to the net!
I place a label on the screen, and a button. When the button is pressed, it does:
label1.Text = ">>>&<<<";
What shows up on the screen is >>><<<. If I take the length of the .Text field it shows 7. If I write >>>&&<<< it appears right, (ie. a single ampersand), on the screen, but the length is now 8...
Started 3 days, 4 hours ago (2010-03-15 14:41:00)
by Tiglet
I got this code (a snippet): Code: class PrintMenu
{
public int Hoofdmenu()
{
try{
Console.Clear();
int Keuze = 0;
Console.WriteLine("**** Welkom bij het DBA project van Vandersteegen Jan ****");
Console.WriteLine("------------------------------- ---------------------------");...
Started 6 days, 22 hours ago (2010-03-11 21:16:00)
by Johnny(TM)
Hello there
I'm trying to make an editor with Visual C#, and storing the data in the Form in List<T> variables. Problem is, when I change the active window while the editor is running, or I open up in the editor a new Form, the data in my Lists is lost. What am I doing wrong?
Started 1 week, 3 days ago (2010-03-08 08:43:00)
by Opariti
Hi,
I'd like to know if there is an elegant way in .net for temporarily locking the access to a set of files to other users.
I can handle (copy, move etc.) something like 100 files in one shot, the files being given with wildcards in path name, so I need a simple way to process all the files and provide transaction integrity.
Thanks
Started 2 weeks, 1 day ago (2010-03-03 14:50:00)
by h3ro
Hallo,
I am trying to build a generic debug class for printing information about different objects to the screen, and also change them if wanted, but I am having some problems with adding the ability to change them.
Here is my DebugItemClass.
The problem is in the update function, the code does not compile as c# does not like it when you try to assign other types of classes to ...
Started 2 weeks, 3 days ago (2010-03-01 02:42:00)
by blackblizzard
Hi everyone. I'm having trouble emitting a call to a delegate whose type is unfinished at the time of the emit. I'll elaborate: I'm trying to dynamically (i.e., with a TypeBuilder) create the following class: Code: public MyClass {
// Delegate type. The 'firstArgument' will be 'this', i.e., this is an open instance method :
// the implicit argument is here given ...
Started 4 weeks ago (2010-02-18 19:10:00)
by Bubba
Since we don't have a managed C++ forum I thought I would put this here:
Take the following code that is in one DLL: Code: #pragma once
using namespace System;
#include "NativeClass.h"
namespace Managed
{
public interface class ITest
{
public:
virtual void Foo();
virtual void SetNativeClass(NativeClass *pClass);
};...
Started 3 weeks ago (2010-02-25 02:53:00)
by Devils Child
[C#]
hi!
is it possible to find a control within a window by the instance and not by the name. the name may differ in other windows language, but the instance may always be the same number.
thanks in advance.
Started 3 weeks, 1 day ago (2010-02-24 17:41:00)
by king naif
hi every one,
i have this sing for the function inside ac.dll
public static ac.Shared.CallResult Create(ac.Shared.CallContext callContext, string userGroupName, string userGroupDescription, int rowId, short versionNumber, out int id)
Member of ac.Shared.UserGroupService
how i can call the function from my application
thanx.
|
|
Hot threads for last week on C# Programming::
Started 6 days, 13 hours ago (2010-03-12 06:19:00)
by Fossaw
I can't cut/paste because the machine with the IDE is not connected to the net!
I place a label on the screen, and a button. When the button is pressed, it does:
label1.Text = ">>>&<<<";
What shows up on the screen is >>><<<. If I take the length of the .Text field it shows 7. If I write >>>&&<<< it appears right, (ie. a single ampersand), on the screen, but the length is now 8...
Started 4 days, 21 hours ago (2010-03-13 22:11:00)
by stumon
Is there a way to implement an Indexer on a class member and not the class itself?
This is strictly for code readability because I would like the idea of having an Indexer property of a variable within a class.
An Example would be Code: public class MyClass
{
private List<PlayerClass> player = new List<PlayerClass>();
public PlayerClass Player[int ...
Started 3 days, 4 hours ago (2010-03-15 14:41:00)
by Tiglet
I got this code (a snippet): Code: class PrintMenu
{
public int Hoofdmenu()
{
try{
Console.Clear();
int Keuze = 0;
Console.WriteLine("**** Welkom bij het DBA project van Vandersteegen Jan ****");
Console.WriteLine("------------------------------- ---------------------------");...
Started 6 days, 22 hours ago (2010-03-11 21:16:00)
by Johnny(TM)
Hello there
I'm trying to make an editor with Visual C#, and storing the data in the Form in List<T> variables. Problem is, when I change the active window while the editor is running, or I open up in the editor a new Form, the data in my Lists is lost. What am I doing wrong?
Started 1 week, 3 days ago (2010-03-08 08:43:00)
by Opariti
Hi,
I'd like to know if there is an elegant way in .net for temporarily locking the access to a set of files to other users.
I can handle (copy, move etc.) something like 100 files in one shot, the files being given with wildcards in path name, so I need a simple way to process all the files and provide transaction integrity.
Thanks
|
|