Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~510 People Reached
Favorite Tags

4 Posted Topics

Member Avatar for CJdamaster

Hi there, Because of browser wars and whatnot, a lot of CSS3 components have to be written in many different syntaxes to work. E.g. -moz-box-shadow and -webkit-box-shadow (even though they're identical in format) So, my solution is to write simple flags in the CSS file which a PHP script will …

1
70
Member Avatar for CJdamaster

Hi there, I'm calling a function which reads XML and holds results in this kind of format: Item 1: Name="", Category="", InstallerURI="" Item 2: Name="", Category="", InstallerURI="" etc. I need some kind of return variable which will be able to hold this data. So far, I have tried: [CODE]// Create …

Member Avatar for CJdamaster
0
110
Member Avatar for CJdamaster

Hi there, I'm working on a project which incorporates the following: [LIST] [*]Reading data from XML [*]Writing data to XML [*]Interpreting XML and passing the information to various places [/LIST] These are on different threads, and I've used a Mutex to make sure they don't try opening the main XML …

Member Avatar for CJdamaster
0
181
Member Avatar for john_zakaria

One way of doing it, is just by getting the text inside your OnClick function. If you had the filename in a text box for example, it could be done like this: [CODE]private void button1_Click(object sender, EventArgs e) { string result = this.textBox1.Text; WebClient webClient = new WebClient(); webClient.DownloadFileCompleted += …

Member Avatar for CJdamaster
0
149

The End.