User Tom Alderman - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:32:09Zhttp://stackoverflow.com/feeds/user/1602http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming26Do you listen to anything while programming?Tom Alderman2008-08-18T17:49:03Z2009-11-25T01:55:34Z
<p>Do you listen to anything while programming? Podcast, internet radio, etc... I've always wonder if listening to music of what not makes one more or less productive. Thoughts...</p>
http://stackoverflow.com/questions/1249379/getting-extra-hex-bytes-when-concatenating-data-files0Getting extra HEX bytes when concatenating data files.Tom Alderman2009-08-08T17:09:50Z2009-08-11T02:17:16Z
<p>I'm concatenating data files, but the problem is that I'm seeing some extra bytes where the files are joined. The new file has extra bytes. I had thought this was maybe a problem with encoding.</p>
<p>Here are the methods that I've tried to use to concatenate the files. The first example I'm getting extra 0xA0 0x00 bytes.</p>
<pre><code> Dim inputfiles() As String = Directory.GetFiles(sourcedir, pattern)
Dim bufSize As Integer = 1024 * 64
Dim buf As Byte() = New Byte(bufSize) {}
For Each inputfile As String In inputfiles
Using fs As New FileStream(inputfile, FileMode.Open, FileAccess.Read)
Dim arrfile() As Byte = New Byte(fs.Length) {}
fs.Read(arrfile, 0, arrfile.Length)
fs.Close()
Using fo As New FileStream(outfilename, FileMode.Append, FileAccess.Write)
Using bw As New BinaryWriter(fo)
bw.Write(arrfile, 0, arrfile.Length)
bw.Close()
fo.Close()
End Using
End Using
End Using
Next
</code></pre>
<p>And the second I get only the 0xA0 byte.</p>
<pre><code> For Each inputfile As String In inputfiles
Using fs As New FileStream(inputfile, FileMode.Open, FileAccess.Read)
Using sr As New StreamReader(fs, Encoding.ASCII)
While Not sr.EndOfStream
Using fo As New FileStream(outfilename, FileMode.Append, FileAccess.Write)
Using sw As New StreamWriter(fo, Encoding.ASCII)
sw.Write(sr.ReadToEnd)
sw.Close()
fo.Close()
End Using
End Using
End While
End Using
End Using
Next
</code></pre>
<p>Thanks for the help in advance.</p>
http://stackoverflow.com/questions/1249379/getting-extra-hex-bytes-when-concatenating-data-files/1258180#12581800Answer by Tom Alderman for Getting extra HEX bytes when concatenating data files.Tom Alderman2009-08-11T02:17:16Z2009-08-11T02:17:16Z<p>The bytes ended up being at the end of each file.... </p>
<p>This might be a hack but here is what I here is the solution I came up with.</p>
<p>Because I got two extra bytes every time I added a file I subtracted 2 from the length of the new byte array.</p>
<pre><code>Private Sub ConcatFiles(ByVal sourcedir As String, ByVal outfilename As String, ByVal pattern As String)
Dim inputfiles() As String = Directory.GetFiles(sourcedir, pattern)
Dim bufSize As Integer = 1024 * 64
Dim buf As Byte() = New Byte(bufSize) {}
Using fo As New FileStream(outfilename, FileMode.Append, FileAccess.Write)
For Each inputfile As String In inputfiles
Using fs As New FileStream(inputfile, FileMode.Open, FileAccess.Read)
Dim arrfile() As Byte = New Byte(fs.Length - 2) {}
fs.Read(arrfile, 0, arrfile.Length)
fo.Write(arrfile, 0, arrfile.Length)
End Using
Next
End Using
End Sub
</code></pre>
http://stackoverflow.com/questions/1204368/sending-receiving-faxes-in-net/1209140#12091400Answer by Tom Alderman for Sending/Receiving Faxes in .NETTom Alderman2009-07-30T20:27:45Z2009-07-31T11:14:44Z<p>Rolling your own solution may not be the best thing. If you do a ton of faxing you might want to check out something like <a href="http://www.captaris.com/rightfax/" rel="nofollow">rightfax</a>. We rolled out a web interface for our clients, but pass the work off to the rightfax server. We like it because it can manage the retries and errors, you know stuff you may not want to have to deal with on the web server. </p>
http://stackoverflow.com/questions/923935/parsing-strangely-formatted-files0Parsing strangely formatted filesTom Alderman2009-05-29T00:50:22Z2009-05-29T01:19:02Z
<p>I need to parse a file but the data is in a strange format that I'm not familar parsing.</p>
<p>The data is always formatted like this. The field name is to the left and the data is right of the "=" and all fields are always in this order.</p>
<p>File Data:</p>
<pre><code>Report 1 of 1
job_name = JOBNAME
job_no = JOB99999 job_id = 6750
rprt_id = 27811
rprt_name = SOMEDATA.SOMEUSER.JOBNAME.JOB099999.0000000.?
ftp_size = 999999
job_group_name = 1
clas = Z
form = 9999
user_id = SOMEUSER
</code></pre>
<p>My first instinct is to do something like this...</p>
<pre><code> 'New up a class created to hold the data'
Dim NFOData As New NFOData
'Create counter for line numbers'
Dim i As Integer = 1
Using sr As New StreamReader(filename)
While Not sr.EndOfStream
Dim line As String = sr.ReadLine
Select Case i
Case 2
NFOData.JobName = line.Substring(11)
Case 3
NFOData.JobNo = line.Substring(9)
Case 4
'snipped to save space'
End Select
i += 1
End While
End Using
</code></pre>
<p>This doesn't seem very clean or elegant to me. </p>
<p>Is there a more elegant way to handle parsing files like this?</p>
http://stackoverflow.com/questions/829707/using-pdfsharp-to-open-aes-128-bit-encrypted-files0Using PDFsharp to open AES 128-bit encrypted filesTom Alderman2009-05-06T13:57:01Z2009-05-07T08:23:22Z
<p>I've been receiving pdf files that I have been processing with the PDFsharp libraries. These files where 128-bit RC4 encrypted. Now I getting files that are 128-bit AES encyption. </p>
<p>I'm getting this exception "The PDF document is protected with an encryption not supported by PDFsharp."</p>
<p>Is AES just not supported, or do I need to change the method in which I open the file? </p>
<pre><code> Using InDoc As PdfDocument = PdfReader.Open(InputFileName, Password, PdfDocumentOpenMode.Import)
Using OutDoc As PdfDocument = New PdfDocument
For Each page As PdfPage In InDoc.Pages
OutDoc.AddPage(page)
Next
End Using
End Using
</code></pre>
http://stackoverflow.com/questions/118002/what-is-the-best-tool-for-manipulating-afp-print-streams/753420#7534200Answer by Tom Alderman for What is the best tool for manipulating AFP print streams?Tom Alderman2009-04-15T19:53:11Z2009-04-15T19:53:11Z<p>Solimar systems has tools. <a href="http://www.solimarsystems.com/SPDE%5FOverview.php" rel="nofollow">SPDE</a> is one. Though I think it is very expensive. It acts as a printer so you can go from multiple printstreams to pdf, postscript, etc. </p>
http://stackoverflow.com/questions/744486/converting-ebcdic-char-to-hex-values-afp-ebcdic-data0Converting EBCDIC Char to Hex values (AFP EBCDIC data) Tom Alderman2009-04-13T16:35:14Z2009-04-14T14:30:47Z
<p>I working with some EBCDIC data that I need to parse and find some Hex values. The problem that I'm having is that it appears that I'm reading the file in with the incorrect encoding. I can see that my record begins with "<code>!</code>" (which is a <code>x5A</code> in EBCDIC) but when doing the conversion to hex it returns as a <code>x21</code>, which is the ASCII value for a "<code>!</code>".</p>
<p>I was hoping that there was a built-in method in the framework, but I'm afraid that I'm going to have to create a custom class to correctly map the EBCDIC character set.</p>
<pre><code>Using fileInStream As New FileStream(inputFile, FileMode.Open, FileAccess.Read)
Using bufferedInStream As New BufferedStream(fileInStream)
Using reader As New StreamReader(bufferedInStream, Encoding.GetEncoding(37))
While Not reader.EndOfStream
Do While reader.Peek() >= 0
Dim charArray(52) As Char
reader.Read(charArray, 0, charArray.Length)
For Each letter As Char In charArray
Dim value As Integer = Convert.ToInt16(letter)
Dim hexOut As String = [String].Format("{0:x}", value)
Debug.WriteLine(hexOut)
Next
Loop
End While
End Using
End Using
End Using
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/684454/how-to-send-mail-from-yahoo-mail-id-in-vb-net-or-c-net-code/685367#6853670Answer by Tom Alderman for How to send mail from yahoo mail Id in VB.NET or C#.NET codeTom Alderman2009-03-26T11:27:43Z2009-03-26T11:27:43Z<p>Here are some examples of doing a basic html email messages.</p>
<p><a href="http://help.yahoo.com/l/us/yahoo/mail/original/mailplus/pop/pop-14.html" rel="nofollow">http://help.yahoo.com/l/us/yahoo/mail/original/mailplus/pop/pop-14.html</a></p>
<pre><code> ' VB
Dim m As MailMessage = New MailMessage
m.From = New MailAddress("you@yahoo.com", "Your Name")
m.To.Add(New MailAddress("Recipient@somedomain.com", "Recipient Name"))
m.Subject = "Hello"
' Specify an HTML message body
m.Body = "<html><body><h1>My Message</h1><br>Put the body here.</body></html>"
m.IsBodyHtml = True
' Send the message
Dim client As SmtpClient = New SmtpClient("smtp.mail.yahoo.com")
client.Send(m)
// C#
MailMessage m = new MailMessage();
m.From = new MailAddress("you@yahoo.com", "Your Name");
m.To.Add(new MailAddress("Recipient@somedomain.com", "Recipient Name"));
m.Subject = "Hello";
// Specify an HTML message body
m.Body = "<html><body><h1>My Message</h1><br>Put the body here.</body></html>";
m.IsBodyHtml = true;
// Send the message
SmtpClient client = new SmtpClient("smtp.mail.yahoo.com");
client.Send(m);
</code></pre>
http://stackoverflow.com/questions/534496/whats-inside-an-ideal-developer-workstation/534605#5346051Answer by Tom Alderman for What's inside an ideal developer workstation?Tom Alderman2009-02-10T22:48:34Z2009-02-10T22:48:34Z<p>Duel monitors or one really large one. Lots of ram at least 4 gig, 64 bit vista.
I wouldn't run server OS on the metal; maybe in a VM for testing. Also I don't think a raptor HDD is worth the money. </p>
http://stackoverflow.com/questions/476042/how-to-create-toolbar-in-window-application-using-c/476096#476096-1Answer by Tom Alderman for how to create Toolbar in window Application using C#Tom Alderman2009-01-24T14:47:35Z2009-01-24T14:47:35Z<p>In a winforms app or a toolbar in IE / Firefox ?</p>
http://stackoverflow.com/questions/196326/progress-button-for-windows-forms/196455#1964550Answer by Tom Alderman for Progress button for Windows FormsTom Alderman2008-10-13T01:11:44Z2008-10-13T01:11:44Z<p>I would not go the gdi route... Have you considered using wpf?</p>
http://stackoverflow.com/questions/98183/what-is-best-resource-for-learning-the-net-framework-thoroughly/98410#984100Answer by Tom Alderman for What is best resource for learning the .NET Framework thoroughly?Tom Alderman2008-09-19T00:43:18Z2008-09-19T00:43:18Z<p>I like the 70-536 book from microsoft press. This is for .net 2.0 but it still is a good reference</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/93048#930480Answer by Tom Alderman for How do you vent stress as a programmer?Tom Alderman2008-09-18T14:29:43Z2008-09-18T14:29:43Z<p>Yo Yo.... heh </p>
http://stackoverflow.com/questions/57287/asp-net-rss-feed/57373#573732Answer by Tom Alderman for ASP.Net RSS feedTom Alderman2008-09-11T19:12:08Z2008-09-11T19:12:08Z<p>You could take a look at Argotic. It is a really cool framework.</p>
<p><a href="http://www.codeplex.com/Argotic" rel="nofollow">http://www.codeplex.com/Argotic</a></p>
http://stackoverflow.com/questions/33619/concurrent-logins-in-a-web-farm0Concurrent logins in a web farmTom Alderman2008-08-28T23:17:43Z2008-08-29T01:26:51Z
<p>I'm really asking this by proxy, another team at work has had a change request from our customer.</p>
<p>The problem is that our customer doesn't want their employees to login with one user more than one at a time. That they are getting locked out and sharing logins. </p>
<p>Since this is on a web farm, what would be the best way to tackle this issue?</p>
<p>Wouldn't caching to the database cause performance issues?</p>
http://stackoverflow.com/questions/26158/how-does-a-stack-overflow-occur-and-how-do-you-prevent-it/26165#26165-4Answer by Tom Alderman for How Does A Stack Overflow Occur and How Do You Prevent It?Tom Alderman2008-08-25T14:53:44Z2008-08-25T14:53:44Z<p>http://en.wikipedia.org/wiki/Buffer_overflow</p>
http://stackoverflow.com/questions/20922/do-you-comment-your-code/21055#210550Answer by Tom Alderman for Do you comment your code?Tom Alderman2008-08-21T20:21:44Z2008-08-21T20:21:44Z<p>Like @Brad-Wilson said Why not How. But I do also use TODO's in my code as well, but for production I try to limit those.</p>
http://stackoverflow.com/questions/14922/what-are-your-favorite-programming-books/14951#149510Answer by Tom Alderman for What are your favorite programming books?Tom Alderman2008-08-18T17:20:53Z2008-08-18T17:20:53Z<p>I really liked Code Craft.</p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/14924#149241Answer by Tom Alderman for How do I programmatically create a PDF in my .NET application?Tom Alderman2008-08-18T17:05:50Z2008-08-18T17:05:50Z<p>The company that I work for is using Rubika from Solimar Systems. I believe that they also use itextsharp in there "PDFEngine". We create hundreds of pdfs with thousands of pages per month with this software.</p>
http://stackoverflow.com/questions/14422/why-is-the-pyobjc-documentation-so-bad/14426#144262Answer by Tom Alderman for Why is the PyObjC documentation so bad?Tom Alderman2008-08-18T10:27:20Z2008-08-18T10:27:20Z<p>This answer isn't going to be very helpful but, as a developer I hate doing documentation. This being a opensource project, it's hard to find people to do documentation.</p>
http://stackoverflow.com/questions/1249379/getting-extra-hex-bytes-when-concatenating-data-files/1249431#1249431Comment by Tom Alderman on Getting extra HEX bytes when concatenating data files.Tom Alderman2009-08-08T19:32:17Z2009-08-08T19:32:17ZI'm using BeyondCompare3 and V TheFileViewer to view the files.
You are correct I have had problems with these methods hitting the 2gig file limit.http://stackoverflow.com/questions/483419/force-validation-on-bound-controls-in-wpf/496871#496871Comment by Tom Alderman on Force validation on bound controls in WPFTom Alderman2009-06-11T12:06:49Z2009-06-11T12:06:49ZSweet! This is exactly what I was looking for.http://stackoverflow.com/questions/923935/parsing-strangely-formatted-filesComment by Tom Alderman on Parsing strangely formatted filesTom Alderman2009-05-29T00:56:18Z2009-05-29T00:56:18ZYour right I'll edit it... Long day... thankshttp://stackoverflow.com/questions/744486/converting-ebcdic-char-to-hex-values-afp-ebcdic-data/745238#745238Comment by Tom Alderman on Converting EBCDIC Char to Hex values (AFP EBCDIC data) Tom Alderman2009-04-13T21:46:24Z2009-04-13T21:46:24ZThe structured fields data is what I'm trying to get. Thanks for the inputhttp://stackoverflow.com/questions/720228/why-are-vb-net-programmers-looked-down-upon/720246#720246Comment by Tom Alderman on Why are VB.net programmers looked down upon?Tom Alderman2009-04-07T16:11:52Z2009-04-07T16:11:52ZAlso I think (at lease in the being in of .net) because VB.NET programmers often come from a VB6 background and C# programmers often C, C++ background.http://stackoverflow.com/questions/698430/what-question-would-you-have-asked-as-an-april-fool/705276#705276Comment by Tom Alderman on What question would you have asked as an April Fool?Tom Alderman2009-04-01T13:16:37Z2009-04-01T13:16:37ZSetting value of the property to the property Bool itself, instead of the private variable _bool. Which causes a infinite loop that blows the stackhttp://stackoverflow.com/questions/671631/does-vb-net-have-anonymous-functions/671638#671638Comment by Tom Alderman on Does VB.NET have anonymous functions?Tom Alderman2009-03-23T23:52:45Z2009-03-23T23:52:45ZHere is a good article from cOdE mag the talks about anonymous methods and lambda expressions <a href="http://www.code-magazine.com/Article.aspx?quickid=0809081" rel="nofollow">code-magazine.com/Article.aspx?quickid=0809081/…</a>http://stackoverflow.com/questions/553264/can-stack-overflow-help-you-explore-the-magic-and-beauty-of-computer-scienceComment by Tom Alderman on Can Stack Overflow help you explore the magic and beauty of computer science?Tom Alderman2009-02-16T14:04:11Z2009-02-16T14:04:11ZIt is long, but not spam.http://stackoverflow.com/questions/164736/redirect-standard-output-efficiently-in-net/164791#164791Comment by Tom Alderman on Redirect Standard Output Efficiently in .NETTom Alderman2008-10-03T00:34:17Z2008-10-03T00:34:17ZJust a side note, I would redirect standard error with the OutputDataReceived event as well. You could then throw a new exception or handle the error in another way.