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

25 Posted Topics

Member Avatar for julseypart

[QUOTE=julseypart;779282]im trying to test out my application so far by uploading all the project files to my "web" folder on the university server, but when i naviage to the server/myfoldername where the index.aspx is located i get an application error - what im i doing wrong? [/QUOTE] There are many …

Member Avatar for julseypart
0
208
Member Avatar for EDDYGATE

[QUOTE=EDDYGATE;690921]Any corrections or critics corncerning this code is warmly welcomed. [Code] private static Image CaptureScreen() { Size s=Screen.PrimaryScreen.Bounds.Size; Bitmap bmp=new Bitmap(S.Width,S.height); Graphics g=Graphics.FromImage(bmp); g.CopyFromScreen(0,0,0,0,s); return bmp; } [/code][/QUOTE] i diden't test the code .. but one thing that i see of the top is the use of bitmap in the …

Member Avatar for stephenca130
0
201
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
118
Member Avatar for serkan sendur
Member Avatar for dickersonka
0
155
Member Avatar for MJV

it should be done with return or output parameter direction depending on you stored procedure. in case it's a return value; [Code=C#] SqlParameter outParameter = new SqlParameter("quotenum", SqlDbType.Int); // or what ever type your return data is; outParameter.Direction = System.Data.ParameterDirection.ReturnValue; // now add it to the sql command cmd.Parameters.Add(outParameter); // …

Member Avatar for Seemant
0
206
Member Avatar for mcham

The version is set by the [B]AssemblyFileVersion[/B] property { or attribute, call it as you like }, you create a new [B]CodeAttribute[/B] and add to the [B]AssemblyFileVersionAttribute[/B] a new argument in which you specify the version you want as a string inside a [B]CodePrimitiveExpression[/B] , then add it all to …

Member Avatar for miculnegru
0
99
Member Avatar for clayiam

in your case the algorithm there is a very simple but time consuming loop, if the structure is in order from 1,2,3....n..n+1 and the parent task always refers to a parent with parentID < currentTaskId you just just use a while and call a addChildTo(parentID) where you add the current …

Member Avatar for miculnegru
0
163
Member Avatar for okarvian

do you want to protect the data with the password for the same user or for different users ? because there it's a difference : For different users the windows keeps it's own User Access Control and can encrypt and decrypt files if the user has the right set of …

Member Avatar for miculnegru
0
106
Member Avatar for pete08

Hello, try this link : [URL="http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download"]http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download[/URL] you can find there all the samples you need to start your own work.

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

RTF controls only accept RTF formated text or plain text.So you have to save the .doc file as .rtf file with the save-as option and then load it the control. That should do the trick.

Member Avatar for BlackSun
0
87
Member Avatar for cVz
Member Avatar for LizR
0
232
Member Avatar for BobLewiston

First off, you are doing it wrong, read about arrays and list. You have this class { notice i added a constructor } [code=c#] class Citizen { private string name; private int age; public string Name { get { return name; } set { name = value; } } public …

Member Avatar for miculnegru
0
92
Member Avatar for complete

public class SomeClass { static uint m_somenum; public static uint SomeNum { get { return m_somenum; } set { m_somenum=value; } } } with this you can write something like this : SomeClass.SomeNum=otherNumber; but be warned that this is a static property ! so for each instance of he SomeClass …

Member Avatar for ddanbe
0
144
Member Avatar for Clawsy
Member Avatar for Soundgarden
Member Avatar for Paula Marti
Member Avatar for miculnegru
0
98
Member Avatar for katrinawafs

I worked on a simmilar project about a year ago .. i can tell you some pointers... the code was in vb6 the main problems where with interval a person could sign-in and sign-out, our solution was a ticket machine but the problems remains you need to allow a interval …

Member Avatar for miculnegru
0
132
Member Avatar for arupa

[QUOTE=Jx_Man;691068]MessageBox.Show("c#-programming language"); :D[/QUOTE] ROFL ! :icon_cheesygrin: You sir are a winner !

Member Avatar for miculnegru
0
160
Member Avatar for reaven

[QUOTE=reaven;677334][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
419
Member Avatar for Poab9200

the problem is that asRate is declared in the click event of the button, declare it as public or as a property of the Form and then you cand acces it ... so where you have public partial class FormB:Form { // if you use .net 3.5 you can do …

Member Avatar for Poab9200
0
128
Member Avatar for nirajshah

hello, Can you write more about the exception ? line number .. reason error ? variable that gives the error.. so we know what are we looking for ?

Member Avatar for LizR
0
165
Member Avatar for fiziumt

[QUOTE=Pikachumanson;680323]Well We aren't going to write the code for you! What have you got so far?[/QUOTE] :D i loved this one. :)

Member Avatar for LizR
0
214
Member Avatar for Hannahlv

as far as i understand your question is : how you insert a object in a audio frame at runtime ? could you post some code on how the audio frame looks , or how is the data formated ? in a byte array ? or something ? anything is …

Member Avatar for miculnegru
0
128
Member Avatar for curt22

The class Notify_Icon can't acces "srvr" because it is not declared outside the main function, try to add the Server as a parameter in the Notify_Icon constructor like class Notify_Icon { public Notify_Icon (Server srvr) { .... } }

Member Avatar for miculnegru
0
276
Member Avatar for walshi2k8

There is something called a TrackBar .. why are you using a progress bar ?

Member Avatar for miculnegru
0
81

The End.