|
More site info...
|
|
Forum profile page for c sharp on http://bytes.com.
This report page is the aggregated overview from a single forum: c sharp, located on the Message Board at http://bytes.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 sharp" on the Message Board at http://bytes.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 sharp:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
62
|
194
|
644
|
|
Post:
|
194
|
607
|
1,888
|
|
|
c sharp Posting activity graph:
|
Top authors during last week:
user's latest post:
Closing thread and program
Published (2010-01-04 13:07:00)
Because you created the thread inside the Load method, you have no way to reference from other methods. Move the creation outside of any methods to give it Form-Wide scope, so you can reach it from all methods within the form. Expand | Select | Wrap | Line Numbers Thread thread_dinleyici = new Thread(new ThreadStart(dinle)); ...
user's latest post:
reflect mouse on label to button
Published (2010-01-05 23:23:00)
@gary sent you another private message, with the exe that also draws the text.., and its a .Net Form application :) @plater welcome to the party (lol)
user's latest post:
building a program that accepts...
Published (2010-01-01 16:32:00)
Well like I said this is simply the testing ground, where I can put all the ideas into play and see if/how they work. The final program will be safer, more secure, faster, etc. I just wanted to see how everything worked and worked together. Try running the program from /bin/release, you can drag the "Commandline Test.pdb" file onto the executable and see what it does, the debugger won't let you do that. I also made a...
user's latest post:
'String was not recognized...
Published (2010-01-05 08:04:00)
string date = "05-01-2010"; Console.WriteLine(DateTime.Parse(date)); This works fine
user's latest post:
reflect mouse on label to button
Published (2010-01-05 17:23:00)
I am late to the party, did someone already suggest firing the mouseover event for the button?
user's latest post:
windows service detect usb
Published (2009-12-30 21:22:00)
hi, I found a lot of programs that detect usb devices in c#. but i need to make windows service program that detect usb. can someone help me???
user's latest post:
How do I format a string for the...
Published (2010-01-05 00:08:00)
I have read this page http://msdn.microsoft.com/en-us/libr...ys(VS.71).aspx but try as I might I cannot figure out how to do it. I tried many combinations but none of them have succeded, as far as I know. I should have had some text now in the ClipBoard with SendKeys.Send("{^(C)}"); but if I don't get an axception due to System.ArgumentException was unhandled. Message="Keyword \"^C\" is not...
user's latest post:
'String was not recognized...
Published (2010-01-05 08:04:00)
I get from my pc a format like that: 5/1/2010 2:35:08 μμ If I had English windows I suppose that instead of "μμ" I would get a "pm".
user's latest post:
windows service detect usb
Published (2009-12-30 21:22:00)
Use WMI to achieve this. This link may help WMI and USB Regards Dheeraj Joshi
|
|
|
|
Latest active threads on c sharp::
Started 15 hours, 41 minutes ago (2010-01-06 12:22:00)
by Plater
Why read in the whole file? If you are only concerned with bytes 16-20
Read in 20 bytes and ignore the first 16?
Your hero name is limited to 4 bytes? Expand | Select | Wrap | Line Numbers
string filename = "";
//populate filename
FileStream fs = new FileStream(filename, FileMode.Open);
byte[] buff=new byte[20];
int NumRead = fs.Read(buff, 0, buff....
Started 11 hours, 42 minutes ago (2010-01-06 16:21:00)
by Plater
Try setting the datasource of your datagridview to that datatable
Started 14 hours, 41 minutes ago (2010-01-06 13:22:00)
by ichibon
Hi tlhintoq,
The image is an prototype that I'm building on Windows, which will be ported to an embedded device where the calendar will be cropped once it goes out of bound. Sorry for the confusion.
Started 21 hours, 41 minutes ago (2010-01-06 06:22:00)
by lucindaa
Hi Friends,
i have 6 projects in my project, unfortunatelly one of my project is deleted i could not get it back but i have the dll of that project so i want to know is there any way to retrive the project again from the dll
Started 16 hours, 41 minutes ago (2010-01-06 11:22:00)
by Amera
ops , yes i'm sorry about that.
when i call a dll function that will set a value in that dll.
ex : void Set(char x)
how can i get the memory address of that value ?
i want to get that address in a C# program.
Started 21 hours, 40 minutes ago (2010-01-06 06:23:00)
by Sl1ver
problem is, it doesn't want to and i have no idea why not
Started 1 week ago (2009-12-30 21:20:00)
by vishal1082
forgot to add, i cannot use draw (OnPaint) text over button cause it looks something like this:
Started 23 hours, 39 minutes ago (2010-01-06 04:24:00)
by Sl1ver
Found a nice example if any are interested http://www.developerfusion.com/code/...into-an- arr ay/
Started 1 day, 19 hours ago (2010-01-05 08:04:00)
by alexis4
I get from my pc a format like that:
5/1/2010 2:35:08 μμ
If I had English windows I suppose that instead of "μμ" I would get a "pm".
|
|
Hot threads for last week on c sharp::
Started 1 week ago (2009-12-30 21:20:00)
by vishal1082
forgot to add, i cannot use draw (OnPaint) text over button cause it looks something like this:
Started 1 week ago (2009-12-30 21:22:00)
by racheli10
hi,
I found a lot of programs that detect usb devices in c#.
but i need to make windows service program that detect usb.
can someone help me???
Started 1 week, 1 day ago (2009-12-29 05:01:00)
by ThatThatGuy
hey tlhinlog can you help me on this post.... is urgent... http://bytes.com/topic/c-sharp/answe...or-applicat ion
Started 1 week ago (2009-12-30 07:03:00)
by GaryTexmo
Windows programs still have a main thread. Your average C# project puts this in Program.cs these days, this is what sets up and runs your application. If you add a string array argument to this main thread, you can then access them as the command line arguments, similar to a console program.
(this is what I got when creating a new Windows Form Application in C# 2008 Express Edition. I added ...
Started 1 week ago (2009-12-30 07:04:00)
by martinsmith160
Hi all
I have a picture box placed within a panel so i can scroll across the picture due to it being very wide. My problem is I want to draw an image over the picture box when a user clicks at a desired location. I have this working but when i scroll the panel or minimise the form the drawing is wiped away. Is there a method to draw on the picture box persistantly. Any help would be hugely ...
Started 4 days, 1 hour ago (2010-01-03 02:39:00)
by alexis4
Hello!
I need to slide a picture from right to left. So I need a timer event. When this event comes, I decrease pictureboxs X position by 1. The thing is that I need a timer faster than 1ms. After some searching, I came up with the following demo code (timer is set for 1ms): Expand | Select | Wrap | Line Numbers
using System;
using System.Drawing;
using ...
Started 2 days, 14 hours ago (2010-01-04 13:07:00)
by tlhintoq
Because you created the thread inside the Load method, you have no way to reference from other methods. Move the creation outside of any methods to give it Form- Wide scope, so you can reach it from all methods within the form. Expand | Select | Wrap | Line Numbers
Thread thread_dinleyici = new Thread(new ThreadStart(dinle));
public void Form1_Load(object sender, ...
Started 15 hours, 41 minutes ago (2010-01-06 12:22:00)
by Plater
Why read in the whole file? If you are only concerned with bytes 16-20
Read in 20 bytes and ignore the first 16?
Your hero name is limited to 4 bytes? Expand | Select | Wrap | Line Numbers
string filename = "";
//populate filename
FileStream fs = new FileStream(filename, FileMode.Open);
byte[] buff=new byte[20];
int NumRead = fs.Read(buff, 0, buff....
Started 1 week ago (2009-12-30 21:20:00)
by GaryTexmo
Well, for the most part, they're just build configs. In Visual Studio you can set up multiple build configs to save different settings, then select whichever from the dropdown list and build that. By default, when you create new projects in VS it makes a debug and release one. The debug config builds with full debugging info and some other settings turned on, whereas the release has different ...
Started 14 hours, 41 minutes ago (2010-01-06 13:22:00)
by ichibon
Hi tlhintoq,
The image is an prototype that I'm building on Windows, which will be ported to an embedded device where the calendar will be cropped once it goes out of bound. Sorry for the confusion.
|
|