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.

0 Endorsements
~8K People Reached
Favorite Tags
Member Avatar for NOVICE3

When a user enters the page in question, a textarea is populated from data from a text file stored on the server. The user can then edit that text (add, erase all or part, and modifiy). When the submit button is clicked, the edited text is written back into the …

Member Avatar for cereal
0
1K
Member Avatar for NOVICE3

I am trying to load text into a form (textarea) from an existing text file resident on the server. I am having no luck. The code I am using (with variations) is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title>SVP Data</title> <link rel="stylesheet" href="main.css"/> </head> <body style="background-color:#FFFFFF"> <title>oakhurstsvp.org</title> <link …

Member Avatar for kingwash
0
2K
Member Avatar for NOVICE3

I am trying to insert HTML code into my website which will setup a text area that all users can see, edit, and save for other users. I know that the text that is entered must be saved on a file that has be be resident on the server. I …

Member Avatar for diafol
0
179
Member Avatar for NOVICE3

I have written a program in C# for telescope control. When I double click on the screen icon for the first time, the form will come up but there is no response from the buttons on the form. After shutting down the program and re-launching it, it works fine. What …

Member Avatar for JerrimePatient
0
141
Member Avatar for NOVICE3

I need to communicate with someone that has had experience with the interface to a UM245R USB module I can't seem to format the code snippet correctly here to give all of the code details. (I'm new at this site) Perhaps an email with the details would help. Alan

Member Avatar for rubberman
0
120
Member Avatar for NOVICE3

I have object names in a ListBox. When a name(line) is clicked, I need to know which line (by number) has been selected. Using that number, I can then do various operations including inserting text into 7 different text boxes. The line number would be the determining number for a …

Member Avatar for JerrimePatient
0
242
Member Avatar for NOVICE3

public void ByteData_TextChanged(object sender, EventArgs e) { DataString.Append(ByteData.Text); //here I do some logic on the character just received } I am using a single textbox (ByteData) to input some ASCII characters. The character strings vary from one character to about five. I would like to terminate the data entry with …

Member Avatar for Mitja Bonca
0
2K
Member Avatar for shujat132

Hello Dear Brothers & Sisters How are you………………….? Well, I am working on a personal project [COLOR="red"]http://www.propertyagentreviews.com/[/COLOR] that is about Property Agent Reviews. But now I am so much confuse because I can not find solution of one problem. And problem is that I want to create a message board …

Member Avatar for shujat132
-1
169
Member Avatar for NOVICE3

Using the following code: [CODE]public byte[] dxfData; int dxfpointer; byte newbyte; StringBuilder layerName = new StringBuilder(); newbyte = dxfData[dxfpointer]; while (newbyte != 0x0d) //stops at a CR { layerName.Append(newbyte); dxfpointer++; newbyte = dxfData[dxfpointer]; } string newstring = layerName.ToString(); label1.Text = newstring;[/CODE] The label shows the numbers for the ASCII letters …

Member Avatar for Momerath
0
124
Member Avatar for NOVICE3

I wanted to pause the execution of my program by requiring the input of a keystoke (any key). The idea was to put a message on a label something like "Change a switch to --- and then key any key to continue." I expected the program to wait until any …

Member Avatar for NOVICE3
0
137
Member Avatar for NOVICE3

I am attempting to communicate with a FTDI module (UM245R). I can get to the point where the actual command to send a byte is made and then get a runtime error that says "Attempted to read or write protected memory." The code at this point is: byte commandByte = …

0
82
Member Avatar for NOVICE3

I am writing a program that steps through a number of testing steps in one of three modes. Mode 1 is simply "run as fast as the processor can go". Mode 2 is a manual "click to advance the step". Mode three is suppossed to be a "step slowly by …

Member Avatar for NOVICE3
0
110
Member Avatar for NOVICE3

Although I have received some advice and code snippets, I think that I should present a broader view of what I am trying to do and the trouble I am having. I have built a test fixture that has an internal microcontroller which directs traffic in and out of the …

Member Avatar for NOVICE3
0
186
Member Avatar for NOVICE3

I was directed on how to read a hex file into an array and it worked out very well. I got the array loaded up from a file that contained hex bytes between 00 and ff. However, when I when to look at the decimal values in the array by …

Member Avatar for zachattack05
0
103
Member Avatar for NOVICE3

I am still struggling with my first program in C#. I need to first select a file from a directory, second, open the file, and third load an array with the contents of the file. This array will later be used to send bytes to an external device (a test …

Member Avatar for NOVICE3
0
395
Member Avatar for NOVICE3

I think that I have captured the file name from a file on my hard drive and I think I have loaded the contents of the file into an array. The code I used is: public void openFileDialog1FileOk(object sender, System.ComponentModel.CancelEventArgs e) { string fullPathname1 = openFileDialog1.FileName; FileInfo src = new …

Member Avatar for Momerath
0
303