xpda

1,336
Reputation
45 views

Registered User

Name xpda
Member for 1 year
Seen 11 hours ago
Website
Location Pryor
Age 54
1d
comment ListView ItemCheck quirk?
How are you disabling your OnItemChecked handlers?
2d
comment What is the best language for sockets programming?
What are the most popular languages that can do that?
2d
comment Why do people rage against homework questions so much
This is an engineering q&a? I thought it was for programming.
2d
answered VB.net word document Insert column break
2d
answered Winforms - order of Load and Activated events
Nov
27
comment How to display records in the listview control?
Thanks -- if it's the correct answer, you can click on the checkmark to mark it.
Nov
27
answered How to display records in the listview control?
Nov
27
comment Hidden Features of VB.NET?
and the else also.
Nov
27
answered Winform and Tab?
Nov
27
answered Creating an tree graph from a collection of objects where only parent node is known
Nov
27
answered Algorithm to find matching pairs in a list
Nov
26
answered How to improve scanned image quality?
Nov
26
answered How do you read a text file without losing odd characters?
Nov
26
comment How do you read a text file without losing odd characters?
GetEncoding(1252) doesn't do it. Yes, the characters are stripped out of the file. If I do a ReadAllLines immediately followed by WriteAllLines, the output file is smaller than the input file.
Nov
26
comment How do you read a text file without losing odd characters?
I don't want to use raw bytes because I am processing string data. It is too slow and cumbersome to use bytes for this. I would like to be able to read a text file and be confident that I am getting the entire file with no characters missing.
Nov
26
comment How do you read a text file without losing odd characters?
When I say chr(187), I mean that the value of that byte in the file is 187. I realize that it has to get converted to some character in Windows, and I don't care which character that is. But I would like to be able to see that character in my string as a character equal to chr(187).
Nov
26
comment How do you read a text file without losing odd characters?
Now I am using ss = File.ReadAllLines(infile, System.Text.Encoding.default). I realize I could use an array of bytes, but I would prefer to use strings since I process the strings. More importantly, when I read a file I would like to be sure I am getting ALL the file, without some characters stripped out.
Nov
26
comment How do you read a text file without losing odd characters?
When I say chr(187), I mean that the value of that byte in the file is 187. I realize that it has to get converted to some character in Windows, and I don't care which character that is. But I would like to be able to see that character in my string as a character equal to chr(187). Now, that character is missing when I use ReadAllLines and any of the three encoding options above.
Nov
26
asked How do you read a text file without losing odd characters?
Nov
26
answered Reading a file in vb.net
Nov
26
answered Does anyone know of a way to view all compiler warnings for a VB.NET project?
Nov
25
answered Get Rid of Error Message - VB.NET
Nov
25
answered Override a event in VB.NET
Nov
25
comment Does anyone know of a way to view all compiler warnings for a VB.NET project?
I have looked for this without success. When you make some major changes to a large project, it can be simpler to fix the errors based on error type rather than the first 104 errors VS desides to display. You can use a search instead, but it doesn't work as well as clicking the next error.
Nov
24
answered What Easter Eggs have you placed in code?
Nov
24
answered Controlling horizontal scroll in RichTextBox
Nov
24
answered Is it possible to create eventlisteners for string, int, bool at all?
Nov
24
comment Problem with function Now() in VB.NET
I believe .net updates the timezone of now() at application start.
Nov
24
revised Problem with function Now() in VB.NET
added 145 characters in body; deleted 7 characters in body
Nov
24
answered Problem with function Now() in VB.NET
Nov
24
comment Basic questions about Classes, Modules and interaction
Reason for the downvote: Does not address the question. It's more of an opinion that would have been better in a comment.
Nov
24
accepted Basic questions about Classes, Modules and interaction
Nov
24
answered Basic questions about Classes, Modules and interaction
Nov
24
answered Best way to resize form/controls according to resolution?
Nov
23
answered Index was outside of bounds of the array. Comparing Arrays
Nov
23
comment Index was outside of bounds of the array. Comparing Arrays
Almost. comparestringa and b have the proper variable names now.
Nov
23
accepted Visual Studio loses/drops/deletes VB continuation lines after subroutines?
Nov
23
answered Index was out of bounds. For Loops and Arrays
Nov
22
answered Send message to a Windows process (not its main window)
Nov
21
answered add images to listbox (visual basic)
Nov
20
comment Visual Studio loses/drops/deletes VB continuation lines after subroutines?
There's an option for that. By default, VB goes through the entire projects and renames references to the control you just renamed. That is REALLY handy. You can even rename the file in Solution Explorer and it will rename everything for you. I'm not sure what happens if this option is disabled.
Nov
20
revised Visual Studio loses/drops/deletes VB continuation lines after subroutines?
added 261 characters in body
Nov
20
answered Turn off auto-add of subroutines in Visual Studio
Nov
20
answered Visual Studio loses/drops/deletes VB continuation lines after subroutines?
Nov
20
comment How to update a textbox on Form from a click on a button on a User Control.
The string can be a parameter in UserControl11.MyButtonClick. You can use any parameter for the event, such as a string, or you can add some members to eventargs.
Nov
18
accepted Process.Start fails when attempting to redirect the output
Nov
18
answered Process.Start fails when attempting to redirect the output
Nov
18
comment “Number line” style of comparisons
I think the question is more about comparisons than assignments.
Nov
18
answered “Number line” style of comparisons
Nov
17
answered Detect if any key is pressed in C# (not A, B, but any)