Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
84% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #3K
~10K People Reached
Member Avatar for lee.j.baxter

Hi everyone, I'm developing a WPF application for work in C# (.NET 4.0), and I've got a skins manager kind-of working. The only thing is, styles defined in my .xaml files are only applied to elements with the same classname, and don't cascade down to derived elements. Is there any …

Member Avatar for Ketsuekiame
0
148
Member Avatar for lee.j.baxter

Hi folks, I'm working on a PXE server application as part of a toolchain that I'm going to use to develop an OS. At the moment, I'm concentrating on the DHCP part, then I'll look at the TFTP part later on. Now, I'm aware that a DHCP uses UDP to …

0
116
Member Avatar for lee.j.baxter

Hi folks, Okay, here's the scenario; I've got 2 DLLs, "A.dll" and "B.dll", that I'm referencing within my VS2010 C# project, "ProjectC". "B.dll" also contains a reference to "A.dll". "A.dll" contains a class, [ICODE]ClassA[/ICODE], which contains an automatic static property called [ICODE]ClassA.StaticProperty[/ICODE]. Now here's where I'm a bit uncertain as …

Member Avatar for lee.j.baxter
0
168
Member Avatar for lee.j.baxter

Hi folks, Please forgive a bit of a n00b question, but I'm working with the SwingWorker class and want to create a subclass of this which includes an input type, as well as the existing output and progress-message types (so basically I'd have "CTSwingWorker< I, O, M >"). Now, I'm …

Member Avatar for mKorbel
0
129
Member Avatar for lee.j.baxter

Hi folks, I'm working on a project that involves 4 net-tops that will be powered from a single PSU. The PSU that I would prefer to use comes from a SATA tower, providing 2 4-pin molex connectors that provide +5/12V. The net-tops that I have in mind use 12V, and …

Member Avatar for tje210
0
177
Member Avatar for lee.j.baxter

Hi folks, I just want to be certain on a few things before I continue developing my software (using NASM). I know it seems a bit strange to finally understand addressing AFTER I've already developed a bootstrap loader, but that's the way it's happened!!! :$ I'm currently working in 16-bit …

Member Avatar for Goalatio
0
158
Member Avatar for +_+man

I need to make an OS For my school baisically it is for children's i am a 10 year old boy the poster of this question is my uncle i have 1 year of experience in doing C++ Regards Hayzam,

Member Avatar for Goalatio
0
152
Member Avatar for lee.j.baxter

Hi everyone, I'm creating my own OS from scratch, and I'm first producing an installation CD so that I can easily install my kernel on a hard drive. So far, I've written a CD-based bootstrap loader in NASM that finds a program within the root directory of the CD, loads …

Member Avatar for lee.j.baxter
0
285
Member Avatar for shane1987

Array of Random Numbers Write a program called Random50 that fills an array with fifty random values between 1 and 999. However, before a random value is entered into the array the program must check that the number generated is not already in the array. If it is already present …

Member Avatar for lee.j.baxter
-1
5K
Member Avatar for lee.j.baxter

I'm creating a system that has a parameterized class "TypeModule<T>". Now, I have another class that has the following member; [CODE]private LinkedHashMap<Class, ArrayList<TypeModule>> m_modules = ...[/CODE] Here's my dilemma. I need something more like the following; [CODE]private LinkedHashMap<Class<?>, ArrayList<TypeModule<?>>> m_modules = ...[/CODE] The only thing is, I need the '?'s …

Member Avatar for apines
0
121
Member Avatar for lee.j.baxter

Hi folks, I'm writing some utility classes for a project, and I've written an abstract class called "XPObjectTable" that displays a table of objects of a given type. To refresh this, I'm using "AbstractTableModel.fireTableDataChanged()". Now I'm writing a similar class for JList, but can't find a similar method (i.e. "AbstractListModel.fireListDataChanged()"). …

Member Avatar for lee.j.baxter
0
185
Member Avatar for extemer

i want to known that i am starting to work on chip programming so i cant understand my first step.The programming language on which i used to work is java and still working.so my question is that how can i program a chip and i don't have any info about …

Member Avatar for lee.j.baxter
0
133
Member Avatar for lee.j.baxter

Hi, I'm creating a component for a process flow charting system, and have come to the point where I need to implement D&D between components. I have a panel containing expanding lists, where each list item represents a process definition. What I need to do is the following. Altogether, I'm …

Member Avatar for kramerd
0
224
Member Avatar for Pokenerd

Hi guys, I am writing a small application which needs to load some images, and other resources. I am currently trying to find the best way to package these resources in my application. I have looked at some examples, I but I have been having trouble understanding them, and many …

Member Avatar for lee.j.baxter
0
147
Member Avatar for coco24

The task is to be able to move the alien right, down, and left. So far all i can get the alien to do is move right and down. I need to get it to be able to move left. Can you help me please? import java.awt.Graphics; import java.awt.Image; /** …

Member Avatar for lee.j.baxter
0
398
Member Avatar for ahcfan

Hi, i'm currently learning assembly with the nasm assembler and i'm stuck trying to get a memory address into a register. Here is what I have: [code][bits 32] [org 100h] section .data msg db "Hello", 0 section .text mov si, [msg] ;lea si, [msg] ret[/code] I read the nasm manual …

Member Avatar for lee.j.baxter
0
100
Member Avatar for lee.j.baxter

Hi everyone, I'm really, really confused with the whole CHS thing. Here's what I understand so far... INT13, function 8 can get me the following drive parameters:- Heads Cylinders Sectors-per-Track I can use the following calculations to get the disk space:- Sectors-per-Side = Sectors-per-Track * Cylinders Total Sectors = Sectors-per-Side …

Member Avatar for coffeeuncle
0
194
Member Avatar for lee.j.baxter

Hi folks, I'm creating a bootloader for my setup CD in NASM, and so far I've got the PVD (Primary Volume Descriptor) stored in a buffer. Now I'm stuck, as I'm not sure exactly how the Directory Records .etc. are structured; how is the one-to-many relationship implemented .etc. as it …

0
105
Member Avatar for lee.j.baxter

Hi folks, I'm developing a system where I'm going to be running BackgroundWorkers within another BackgroundWorker's DoWork method. Is it safe to call the ReportProgress(...) method of the former from the work threads of the other BackgroundWorkers?

Member Avatar for kvprajapati
0
58
Member Avatar for lee.j.baxter

Hi, I've worked with the Speech API in the past (VB6), and I'm now looking to use it in my project. For those who haven't read previous posts of mine, I'm developing an AI system in C#/.NET which learns from the internet. Well, I'm going to say I told a …

Member Avatar for kvprajapati
0
198
Member Avatar for lee.j.baxter

Hi everyone, I'm using WPF to make a nice UI for a completely automated system (to the point where there are no interactive controls what-so-ever) that downloads media from the net and learns from it. I've got a class that I've created which acts as an entry point to the …

Member Avatar for Geekitygeek
0
566
Member Avatar for lee.j.baxter

Hi everyone, I'm looking to tinker with developing an OS from scratch, but the only machine I have that's 'tinkerable' (i.e. that I don't have important work or anything on) is my PS3 (not the slim version, so I can install "Other OS"). I've seen an example on the net …

0
123
Member Avatar for lee.j.baxter

Hey there folks! I've created a class, ATHENADictionary which extends Dictionary, as listed below... [CODE] /// <summary> /// Extends the Dictionary class to provide more functionality. /// </summary> /// <typeparam name="TKey">the key type.</typeparam> /// <typeparam name="TValue">the value type.</typeparam> public class ATHENADictionary<TKey,TValue> : Dictionary<TKey,TValue> { /// <summary> /// New indexer method, …

0
101
Member Avatar for lee.j.baxter

Hi folks, I'm working on a very complex AI system, which I've designed as a expandable, long-term project. One of my core components will be an FOPC (First-Order Predicate Calculus) system, which needs an inference engine in order to function. I just wondered if anybody has come across any tutorials …

0
52
Member Avatar for lee.j.baxter

Hi folks, I'm working on a complex AI system that pulls information from the internet (and possibly from other live sources in the future) and learns from it in the same way that a human does. I'm not sure if this counts as a C# problem or more of a …

Member Avatar for lee.j.baxter
0
154
Member Avatar for RoyMicro

Hai I have to provide icons for my C# application (just like any other application!) But what is the optimum size of these icons used for different purposes? GUI has a icon, menu has got images etc. I got downloads in which different sizes of icons and even images in …

Member Avatar for lee.j.baxter
0
485
Member Avatar for nicolae
Member Avatar for lee.j.baxter

Hi folks, I'm developing an AI system in C# that will pull out information from the internet in various forms and learn from it. The system will consist of a multitude of agents that interact with a very large central database of knowledge. At the moment I'm at the prototyping …

Member Avatar for lee.j.baxter
0
217