Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #2K
~4K People Reached
Favorite Tags
Member Avatar for julseypart

hi, basically im designing an online backup system for my final year project. It will be an (asp.net/c#) web application which allows users to backup their files to a remote server. Each user will have their own account where they can login to backup files, view files backed up etc.... …

Member Avatar for julseypart
0
189
Member Avatar for EDDYGATE

The c# code below can be used to capture the screen . Combined with the filesystemwatcher class ,this code can be used to monitor user activities on a computer.You can also add a timer to this method to capture the screen at regular intervals or you can use a simple …

Member Avatar for stephenca130
0
174
Member Avatar for miculnegru

Hello, My problem is : I have a .aspx page where I use a ScriptManager and a UpdatePanel. In the update panel I generate controls based on user interactions. My problem is this : when I add dynamically the CustomControl (.ascx page ) in the UpdatePanel ( the CustomControl has …

Member Avatar for IdanS
0
109
Member Avatar for serkan sendur

Having a big project and having to compile it in order to run it each time, takes long time. I want to run it without build stage if possible(provided that i didnt make any change to source codes). Any ideas? Thanks.

Member Avatar for dickersonka
0
145
Member Avatar for MJV

I have a stored procedure which returns a parameter @quotenum when run in sql but I'm having trouble getting a return value in my C# form. I'm trying to get the message box to show the @quoteno parameter but im failing misserably. The connection is working an the parameter @estnum …

Member Avatar for Seemant
0
188
Member Avatar for mcham

I'm looking for a way, just about any way really, to set the file version of a file. Clearly, programatically would be best, but at this point any way would be acceptable. What I have more specifically, is a file generated dynamically using CodeDOM. The version of this file is …

Member Avatar for miculnegru
0
88
Member Avatar for clayiam

Hi All, This has been doing my head it and i expect its not as hard as i'm making it out to be. I'm creating a WorkFlow Management app which is made up of Workflows, Task and Subtasks. All i want to do loop through all Tasks in the Workflow. …

Member Avatar for miculnegru
0
145
Member Avatar for okarvian

How can I Lock(set password) to a folder using c#. Please help me Thanks in advance

Member Avatar for miculnegru
0
100
Member Avatar for pete08

Hi, does anyone knows how can I create POP3 server (not client) in C#. I'm not talking about downloading some commercial solution, but developing new one. Pete

Member Avatar for miculnegru
0
90
Member Avatar for shazzy99
Re: RTF

Is there a way to keep the text formatting as it is while reading content form word into richtextbox control in C#?

Member Avatar for BlackSun
0
63
Member Avatar for cVz

I am making a recursive treeview that lists the directories on my server [or trying atleast]... So far so good , it seems to work, cept it does not load all the files / directories, please consider my code : [code=C#] void recurese(string root) { // New instance of the …

Member Avatar for LizR
0
199
Member Avatar for BobLewiston

Can anybody give me a hint about how to put these two techniques together? I can use the "this" reference to control access to the private fields of an individual object: using System; namespace MyNamespace { class Program { static void Main () { Citizen citizen = new Citizen (); …

Member Avatar for miculnegru
0
78
Member Avatar for complete

What is the point of using set and get in C Sharp? It seems variables are used differently in this language than in C++. For some reason, you have to have a static variable defined like this: public static uint Somenum { set { m_somenum = value; } get { …

Member Avatar for ddanbe
0
135
Member Avatar for Clawsy

I need little help on creating shortcut for my C# app. I want programmatically do this. I intend to create a shortcut in startup menu folder. Maybe you could also show me how to start my app automatically using a registry entry. Thanks!

Member Avatar for Diamonddrake
0
915
Member Avatar for Soundgarden

Could someone tell me if there is anyway to pass the selected items(files) from Explorer to my Prog....Now I can retrieve the last item selected using the registry. ie shell -> command -> Prog %1. But if the user Selects multiple items(files) in Explorer the %1 can only send the …

Member Avatar for Soundgarden
0
117
Member Avatar for Paula Marti

HI all, I am trying to add a 3D scene to my c# application, so I am using Tao libraries. I am not very experienced with c# and a complete beginner in OpenGL. At the end, I could open a window with my OpenGL graphic using Glut, but the problem …

Member Avatar for miculnegru
0
83
Member Avatar for katrinawafs

it's my first time here and i hope somebody will help me solve my problem about my project...i have a project about payroll system using c# that provides web user clock in and clock out(minimum working hours-8hrs, it will detect if its overtime) , generate time worked, generate payroll slips, …

Member Avatar for miculnegru
0
121
Member Avatar for arupa

you will have to write a programe , and debug it and the it should give the result 'c#-programming language,'can you help me.

Member Avatar for miculnegru
0
140
Member Avatar for reaven

[code=c#]StreamReader reader = File.OpenText("mystations.txt"); string line = reader.ReadLine(); while (line != null) { // string[] stationtxt = line.Split('\t'); string name = line.Split('\t')[0]; string url = line.Split('\t')[1]; string desc = line.Split('\t')[2]; Image img = Image.FromFile("c:/pictures/"+ name + ".jpg"); line = reader.ReadLine(); dgLogo.Image = new Bitmap(img); dataGridView1.Rows.Add(name, url, desc, img); //(stationtxt); } …

Member Avatar for reaven
0
392
Member Avatar for Poab9200

Hello, I'm having an issue trying to get the data from several TextBoxes in FormB to FormA. In FormB I use a string to gather the data from the TextBox like so: [CODE=csharp] private void asBtnOk_Click(object sender, EventArgs e) { string asRate = asBoxRate.Text; } [/CODE] Then I go to …

Member Avatar for Poab9200
0
114
Member Avatar for nirajshah

I am newly join to this forum and I am new with C#. Currenlty i am developing an application in C# as, Each second the application receives data from a sensor wich is attached on RS485 port of the PC. To take data at each second i have used timer …

Member Avatar for LizR
0
123
Member Avatar for fiziumt

hi all... im a student from malaysia... i need help from you guys about my final year project(fleet management system using mobile) to develop a system using c#.... thank you...

Member Avatar for LizR
0
200
Member Avatar for Hannahlv
Member Avatar for curt22

Hi everyone, I'm trying to write a server application, but I'm having a bit of trouble. I keep getting this error [CODE]The name 'srvr' does not exist in the current context[/CODE] I'm pretty sure I know what the problem is, but I don't know how to fix it. I have …

Member Avatar for miculnegru
0
248
Member Avatar for walshi2k8

Hi, I am currently creating a media player using c#. I want to add a seek function to my application to allow users to jump to parts of a song. Does anyone know of an easy way to do this? I use a progress bar to show the currnet progress …

Member Avatar for miculnegru
0
74