Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~10.8K People Reached

10 Posted Topics

Member Avatar for Swapnil Palande

I don't know how to solve your problem, but I'm guessing there's no such thing as a global variable since that would destroy encapsulation. As a guess, couldn't you use static members of a class (called sessionSetttings or similar) and then have a property access function (is that what they're …

Member Avatar for Quezo
0
9K
Member Avatar for asmith3006

Hi, I'm looking to write a server/client system and I want to pass a hashtable between the two. I've found lots of tutorials on making a "Chat" system which passes strings, but how can I increase this to hashtables? Thanks. Andrew.

Member Avatar for sknake
0
466
Member Avatar for asmith3006

Hi, I have three functions, a(), b() and c(). In function a() I need to call function b() and then after a 2 second delay call function c(). However, I can't use Thread.sleep(2000) as I need to be able to keep clicking on other buttons. I think I need to …

Member Avatar for serkan sendur
0
384
Member Avatar for asmith3006

Hi, I have a page which has a Div on it which gets constantly updated (every 1-3 seconds) but I want it to maintain its position between refreshes. I'm very very very new to Javascript and I am finding it very difficult to convert code that I've found online. Can …

Member Avatar for Ken Sharpe
0
128
Member Avatar for asmith3006

Hi. Is it possible to fill a rectangle with a ratio of colour, for example fill a rectangle with 50% red so it's pale red? I want to be able to specify the shade of colour in a number form if possible. So far I've only found linear gradiants which …

Member Avatar for Lord Soth
0
105
Member Avatar for asmith3006

Hi, Is it possible for a text box to always get its contents (text) from a particular variable? In C terms I guess I'd say "can I have the contents of a text box point to a pointer?" or something like that. Basically, I want the text box to always …

Member Avatar for Lord Soth
0
97
Member Avatar for alura

You need to have a DialogResult item such as [code]DialogResult dr = newForm.ShowDialog(); if (dr == DialogResult.OK) {//do something}[/code] Then in your prompt you need to set the buttons to have the correct dialogue result values. You can either set these by code or by the property panel. Hope that …

Member Avatar for asmith3006
0
198
Member Avatar for asmith3006

Hi. Is it possible to add new rows and columns to the table layout panel at runtime? I want to create a table of text boxes, but I don't know how many rows or columns will be needed. Also, is it possible to add rows and/or columns at the click …

0
83
Member Avatar for asmith3006

Hi, not sure if the title is correct but I think that's what I mean. I have the following code: [code]//Box the shape is contained in protected Rectangle container; /// <summary> /// Gets or sets the value for position /// </summary> public Point Position { get { return container.Location; } …

Member Avatar for Lord Soth
0
197
Member Avatar for asmith3006

Hello new world. I'm new to C# and very new to GDI and drawing and would really appreciate some help. I'm trying to draw some boxes (rectangles). I wont put code up as I don't think it's nessesary... but you never know. As a test I've made a form and …

Member Avatar for asmith3006
0
128

The End.