Submitted by peter on Sat, 11/28/2009 - 21:07
I finally figured out what was causing the AsynchronousThreadAbort in MajorSilence2257 when using fyiReporting. Apparently it is caused by setting rdlView.ShowWaitDialog = true. You must set it to false as soon as you create a new instance of the rdlviewer.
rdlView = new fyiReporting.RdlViewer.RdlViewer();
rdlView.ShowWaitDialog = false;
I am assuming this is a bug as I found mention of it on their forums.
Submitted by peter on Fri, 11/27/2009 - 23:23
MessageDialog m = new MessageDialog(this, DialogFlags.Modal, MessageType.Info, ButtonsType.YesNo, false,
"Should the textbox be set to Hello World");
ResponseType result = (ResponseType)m.Run();
m.Destroy();
if (result == ResponseType.Yes)
{
entry1.Text = "Hello World";
}
Submitted by peter on Tue, 11/24/2009 - 00:19
Cocaine Cowgirl, O Holy Night, and I Don't want to miss a Thing are progressing nicely.
Submitted by peter on Tue, 11/17/2009 - 02:20
Book List:
Precalculus - It has been seven years since I have done math, so I will start with this.
Calculus Made Easy
Applied Cryptography
PostgreSQL - Finish few remaining chapters
Data Structures and Problem Solving Using Java
Programming Linux Games
Bookkeeping and Accounting
Nemsis
Submitted by peter on Mon, 11/16/2009 - 02:08
I am reading through a chapter on binary trees. The first simple example they give is traversing through directory structures. As the book is for java the attached file is the example translated to c#.
Once I have finished the chapter I will upload the binary tree example translated to c#.
Here is an example postorder recursion through a directory tree (attachment main.cs). See attachment Main.cs for a different example.
using System.IO;
class RecurseDirectory
{
public static void Main(string[] args)
{
RecurseDirectory r = new RecurseDirectory();
Submitted by peter on Sun, 11/08/2009 - 17:44
I am rereading some chapters in "Data Structures & Problem Solving Using Java". I just finished reading chapter 17 on linked lists. Here is the singly linked list and sorted linked list from this chapter done in c#.
LinkedList - the list itself
SortedLinkedList - the sorted linked list
ListNode - represents the node
LinkedListIterator - represents the position
using System;
using System.Collections.Generic;
namespace LinkedLists
{
public class ListNode
{
private T elem;
private ListNode nextNode;
public T Element
{
Submitted by peter on Sat, 10/10/2009 - 21:01
Submitted by peter on Sat, 09/26/2009 - 22:03
Got DeVeDe 3.12.5 working properly by building as normal. Then copied devede.exe, library.zip, and devede.glade to a folder containing all other files from DeVeDe 3.12.3. For some reason using newer gtk versions just will not work correctly with icons and other things in the glade file.
Submitted by peter on Sat, 09/26/2009 - 01:22
I am sick to death of using PyGTK on Windows. It sucks, does not work very good, is not up to date and does not support the features that are in the latest versions of DeVeDe (3.14, gtkbuilder...). I will be uploading a fixed version of 3.12.4 and hope that it works. If it does work, good, if not I will not be doing anymore packages for DeVeDe until PyGTK is maintained properly for Windows.
I think I will be sticking to .NET development. It is so much nicer. Of course I will still be using PyGTK on linux.
Submitted by peter on Tue, 09/08/2009 - 22:50
Since I have received my new Vista 64 computer I have been having problems with creating ISO files with DeVeDe. To quickly fix this I have added support for ImgBurn (http://www.imgburn.com). If ImgBurn is installed DeVeDe will use it to create the ISO file instead of mkisofs.
Using ImgBurn should also take care of the "ran out space errors" that some users have been experiencing.
I am currently testing it and within a couple of days there should be a DeVeDe 3.12.4 package uploaded.
Pages
Recent comments