|
More site info...
C# Language | Forum profile
|
|
Forum profile page for C# Language on http://www.c-sharpcorner.com.
This report page is the aggregated overview from a single forum: C# Language, located on the Message Board at http://www.c-sharpcorner.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# Language" on the Message Board at http://www.c-sharpcorner.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# Language:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
70
|
375
|
1,239
|
|
Post:
|
168
|
937
|
2,875
|
|
|
C# Language Posting activity graph:
|
Top authors during last week:
user's latest post:
Drawing a graph using circle
Published (2009-11-26 13:30:00)
Hiii Check Below Tutorial For Windows Mobile ..Chart http://community.opennetcf.com/articles/cf/archive/2007/10/31/using-gdi-on-windows-mobile.aspx and check do you like this answer check box :)
user's latest post:
cookies in asp.net with c#
Published (2009-11-26 02:35:00)
You can use the Convert class or the Parse method of the built-in type you are casting to. i.e. string myStr = "123"; int myParsedInt = Int32.Parse(myStr); int myConvertedInt = Convert.ToInt32(myStr); This example uses the int type, but you can also use the same techniques for any of the other integral or floating point types.
user's latest post:
Using sizeof() in c# with arrays
Published (2009-11-26 05:37:00)
Friend, This sizeof method is used to get the size of value types. You cannot use it for arrays. But you can get the size of 'Vertex' type and multiply it by the length of the array. Console .WriteLine( "The size of v is {0}." , ( sizeof ( Vertex ) * v.Length).ToString()); Please mark Do you like this answer checkbox, if this helps.
user's latest post:
hex editor formatting
Published (2009-11-24 14:14:00)
Use the BinaryReader Class . Use BinaryReader.BaseStream Property to get the underlying stream so you can use the Stream.Position Property to set the position within the file. Use BinaryReader.ReadBytes to read the bytes in the file.
user's latest post:
where is database file of MySql
Published (2009-11-26 01:13:00)
i don't want that sir ... i m asking about physical file of Data Base . means where is the structure file of My Data Base. and where is Store in my system.. hope you understand what i want.... please reply me fast thanks in Advance
user's latest post:
pass valiable to parent control
Published (2009-11-21 03:13:00)
well my friend, for the question you present you will need to use Delegates, you will need to create a public delegate for each Control and on the OnClick on the button in Child Control call the A.Delegate hope you can understand this
user's latest post:
Error Button with Tabpanel of...
Published (2009-11-26 00:37:00)
Dear Friend, I have write some code for you about having problem of how to identify which tab is selected?? or on which tab controls are to be added.. Please Dont forget to mark the answer :) it'll help me to get some points... Download the project from here
user's latest post:
Array Class
Published (2009-11-26 15:37:00)
Adding to Piort Justyna 's reply if you want to resize the array eg int[] j = new int[0]; //zero elements --> Array.Resize(ref j, j.Length +1); //increase size of array by one (1) This is most useful in while or for loops. eg. int i = 0; while(i != recordCount){...
user's latest post:
timer problem
Published (2009-11-24 02:39:00)
If you are using javascript then after updating record call a javascript function and pass the status of the record (Yes or No) to that function and show the div accordingly. And you can hide this div by javascript delay function. -Arvind
|
|
|
|
Latest active threads on C# Language::
Started 4 days, 13 hours ago (2009-11-26 10:50:00)
by Piort Justyna
You can create an instance of a class implementing the Array class simply my executing one of Array's methods:
Array sampleArray = Array.CreateInstance(Type.GetType("String"), 2);
This will create an instance of an one-dimensional array, which can contain 2 elements of type 'String'. This is 100% correct but it's a lot easier to use this array:
String[] sampleArray1 = ...
Started 4 days, 9 hours ago (2009-11-26 15:05:00)
by theLizard
Try using a DB Exception in your catch eg. catch( DbException ex) instead of a general Exception you may be able to get more info on what is going on. A general exception will not trigger on a data error exception (at least I have never seen it to)
Started 5 days, 17 hours ago (2009-11-25 06:48:00)
by home base
this link may be help try this .
Started 4 days, 22 hours ago (2009-11-26 02:20:00)
by Saulius
The problem is, that I cannot use DrawPie() and FillPie() methods, becouse I am in Compact Framework platform.
Started 4 days, 19 hours ago (2009-11-26 05:37:00)
by niki d
Friend,
This sizeof method is used to get the size of value types. You cannot use it for arrays.
But you can get the size of 'Vertex' type and multiply it by the length of the array.
Console .WriteLine( "The size of v is {0}." , ( sizeof ( Vertex ) * v.Length).ToString());
Please mark Do you like this answer checkbox, if this helps.
Started 4 days, 22 hours ago (2009-11-26 02:35:00)
by home base
You can use the Convert class or the Parse method of the built-in type you are casting to. i.e. string myStr = "123"; int myParsedInt = Int32.Parse(myStr); int myConvertedInt = Convert.ToInt32(myStr);
This example uses the int type, but you can also use the same techniques for any of the other integral or floating point types.
Started 4 days, 23 hours ago (2009-11-26 00:54:00)
by niki d
Hi Friend,
As I feel, what you have done is correct. If you change the size of the matrix then definetely you will have to reassign the values of each and every pixel. I dont think you can stop that by using another way.
You can use a class like this. So you can set the values from outside according to OOP concepts.
public class MyImage { private int _ImageSize =...
Started 6 days, 20 hours ago (2009-11-24 03:56:00)
by Manath Pathana
Thank for reply. But you can correct it by give some code for me. now it still error. I want some code from you. Thank
|
|
Hot threads for last week on C# Language::
Started 1 week, 1 day ago (2009-11-22 10:47:00)
by Kirtan
Friend, SQL Lite is small db that can be integrated with Application for example Firefox Browser using SQL Lite Database to Store its Settings For Connecting SQL With .net use SQl Lite .net connector http://www.sqlite.org/index.html
Started 5 days, 17 hours ago (2009-11-25 06:48:00)
by home base
this link may be help try this .
Started 6 days, 20 hours ago (2009-11-24 03:56:00)
by Manath Pathana
Thank for reply. But you can correct it by give some code for me. now it still error. I want some code from you. Thank
Started 6 days, 18 hours ago (2009-11-24 06:45:00)
by Naim Khan
thank u sir for reply me but still its not working i used UCASE instead of Upper but still its not working i m sending you gbl.Show_Country() function hope you will under stand . please try to resolve my problem.....
// code
public DataSet show_country()
{
DataSet ds = null;
string msg = "";
MySqlParameter[] myParams = new MySqlParameter[0];
try
{
gDB.OpenConnecti on();
ds = ...
Started 5 days, 23 hours ago (2009-11-25 01:39:00)
by Nikhil Kumar
Vinaya this is very good time to use windows control library control listen
just create a user control by windows control library in that take a
panel and and fill the backgroung color as you like and shape that in a
rectagle and then put a button there like a close button and code on
that button event this.Close(); simple and use that control in all your mdi sub forms. for further ...
Started 6 days, 23 hours ago (2009-11-24 01:41:00)
by Amit
hi Friend, If you want to use the class as functionally overloaded and can be inherited with multiple class then make it interface and if you want only to overload the functionality not for multiple inheritance you can use Abstract classes...... Hope you get it.... its by my experience .....and dont forget to mark the answer if it helps.....:)
Started 4 days, 22 hours ago (2009-11-26 02:35:00)
by home base
You can use the Convert class or the Parse method of the built-in type you are casting to. i.e. string myStr = "123"; int myParsedInt = Int32.Parse(myStr); int myConvertedInt = Convert.ToInt32(myStr);
This example uses the int type, but you can also use the same techniques for any of the other integral or floating point types.
Started 1 week, 3 days ago (2009-11-20 15:13:00)
by John Penn
You shouldn't be using a service to start the process if there's a GUI involved. The simplest solution would be to place a shortcut for the process in the All User's startup folder.
Started 1 week, 2 days ago (2009-11-21 07:00:00)
by Rujuta Xavier
Hi... I did not understand your problem fully but I'll help the way I can. If you want the user to select a checkbox and then insert a value into the gridview and want to have a constraint that no one adds a similar record again then keep the autopostback of checkbox as well gridview true so that everytime user click the page is refreshed and they me see all the added record also do back end ...
Started 4 days, 22 hours ago (2009-11-26 02:20:00)
by Saulius
The problem is, that I cannot use DrawPie() and FillPie() methods, becouse I am in Compact Framework platform.
|
|