Search Results

Showing results 1 to 40 of 489
Search took 0.03 seconds.
Search: Posts Made By: Acidburn
Forum: C# Jul 25th, 2009
Replies: 2
Views: 597
Posted By Acidburn
Hey guys,

Is there a standard library for communicating with a USB device? I've got a smart card reader that works via USB, and implemented the PC/SC interface. To my knowledge and googling I've...
Forum: Java Jul 17th, 2009
Replies: 1
Views: 434
Posted By Acidburn
Hey guys,

a long shot in the dark, but I've googled around for this and so far not promising! All the threads / pages / wikis etc I've read are all pre 2005 and state it can't be done yet. I...
Forum: Java Jul 16th, 2009
Replies: 3
Views: 316
Posted By Acidburn
But I'd like to iterate through all the elements in the enum list.
Forum: Java Jul 15th, 2009
Replies: 3
Views: 316
Posted By Acidburn
Hey guys,

I'm coding a phonebook viewer using J2ME, now the following code appears to break when the hasMoreElements gets fired! The exception is a arrayoverflow type on. Not sure why though


...
Forum: Java Jul 15th, 2009
Replies: 2
Views: 295
Posted By Acidburn
Hey guys,

Is it possible for a J2ME application to access the devices phonebook? I've been googling but nothing much as turned up.

John
Forum: C# Jul 15th, 2009
Replies: 4
Views: 210
Posted By Acidburn
Hmm interesting. Well I've *fixed* it but just out of interest, what consequences could this have? Cheers for pointing me in the right direction
Forum: C# Jul 15th, 2009
Replies: 4
Views: 210
Posted By Acidburn
Hey guys,

I'm really puzzled about this error:



Generics IS supported, I've done it on more than one occasion in the same manner too.

Here's the code:
Forum: Java Jul 2nd, 2009
Replies: 1
Views: 200
Posted By Acidburn
Hey guys,

I've got a mobile application written which can browse through directories on the handheld device. This links to a C# application on windows via a usb cable (Simple phone cable). now...
Forum: Java Jul 1st, 2009
Replies: 2
Views: 670
Posted By Acidburn
Hey guys,

I'm trying to access the file system of a Nokia device which operates on Symbain OS 60. Is this possible with Java? I've googled around but can't seem to find much... Most likely my...
Forum: C# Jun 17th, 2009
Replies: 1
Views: 220
Posted By Acidburn
Hey guys,

I'm not sure where to post this but I've got some code written in C#. Now I'd like to talk to the device, I can't find any information on obtaining a connection to an S60 device. Could...
Forum: C# Apr 21st, 2009
Replies: 5
Views: 804
Posted By Acidburn
Your method is the tree I'm trying to bark up. However I'm not sure how to turn a string into a class implementation.

The text file contains paths from interfaces to the actual concrete...
Forum: C# Apr 11th, 2009
Replies: 5
Views: 804
Posted By Acidburn
Jerry I'm not asking *How* to implement each class, more how to tell the compiler at runtime which object to create based on a text file.
Forum: C# Apr 11th, 2009
Replies: 5
Views: 804
Posted By Acidburn
Hey guys

I've got a Factory that can return a database writing object. It takes in a config file that points it to which class to create an object of. Now this is were I'm stuck.

Factory ->...
Forum: C# Apr 9th, 2009
Replies: 4
Views: 993
Posted By Acidburn
from another class.


Class X
IndividualPCSpec m_individualPC = new IndividualPCSpec (this);
ComputerHardware dto = new ComputerHardware(...);
..
..
Function X()
{
Forum: C# Apr 9th, 2009
Replies: 4
Views: 993
Posted By Acidburn
Hey guys,

I've got a multithreaded application done in C# but the label on one of my forms won't update! It doesn't do anything



public IndividualPCSpec(AllKnownDevicesFrm parent)
...
Forum: C# Apr 8th, 2009
Replies: 1
Views: 356
Posted By Acidburn
Hey guys,

I've got a multithreaded application. The GUI runs on its own thread whilst a background worker thread will get invovked later on. Now the problem occurs when the bakground thread trys...
Forum: C# Feb 19th, 2009
Replies: 3
Views: 289
Posted By Acidburn
That sounds good, but I'm not sure how to implement such a thing
Forum: C# Feb 19th, 2009
Replies: 3
Views: 289
Posted By Acidburn
Hey guys,

I've got a GUI thread, which creates a new thread to compute some data. Depending on how big that data is more threads get spawned from the new thread.

My problem is this

GUI -...
Forum: C# Nov 18th, 2008
Replies: 3
Views: 320
Posted By Acidburn
it contains a join(), but shouldn't all threads spawned from the parent contain this?
Forum: C# Nov 18th, 2008
Replies: 3
Views: 320
Posted By Acidburn
Hey guys, my main thread seems to stop when i start 2 new threads and start them off. It sits and waits for the 2 threads to finish.

The two threads are created off a factory class. Is this why?...
Forum: C# Nov 15th, 2008
Replies: 3
Views: 905
Posted By Acidburn
namespace pb
{
using System;
using System.Drawing;
using System.ComponentModel;
using System.Windows.Forms;
using System.Threading;


/// <summary>
Forum: C# Nov 14th, 2008
Replies: 3
Views: 905
Posted By Acidburn
Hey guys, I've an issue when it comes to multithreading

i seem to get this error after updating a variable...



Basically I'm trying to use a progress bar indicator to show the applications...
Forum: Java Oct 27th, 2008
Replies: 3
Views: 394
Posted By Acidburn
Woah!! Woah!! Woah!! First things first, don't catch Exception unless you really need to! Exception will catch *all* exceptions. I'd rather create my own exception class which inherits the base...
Forum: Java Oct 27th, 2008
Replies: 8
Views: 915
Posted By Acidburn
Yeh compile it and use the *.jar file. All the java command does is compile it? Could be wrong here.
Forum: C# Sep 8th, 2008
Replies: 12
Views: 1,364
Posted By Acidburn
How can you the interface type has the type? Its just an interface in C# rather than a class isn't it?
Forum: C# Sep 8th, 2008
Replies: 12
Views: 1,364
Posted By Acidburn
The obly bit I'm struggling with is creating an HashMap that takes classes, otherwise how am I going to say

GetClass(x) where X is a key if they are all objects? Somewhere I'd have to cast it to...
Forum: C# Sep 8th, 2008
Replies: 12
Views: 1,364
Posted By Acidburn
I'm not sure its proxy that I'm looking for? Perhaps the name deems that opinion. Here's more information on what I'm trying to acheive.

-----------

I've got an interface called DAOInterface,...
Forum: C# Sep 7th, 2008
Replies: 12
Views: 1,364
Posted By Acidburn
hmm,so you can't pass a class into a method and cast it?

Eg

loadAllClasses(class T) {

//load through all DLL's...

create object of type T
Forum: C# Sep 7th, 2008
Replies: 12
Views: 1,364
Posted By Acidburn
One question from that, whats newcmd?
Forum: C# Sep 6th, 2008
Replies: 12
Views: 1,364
Posted By Acidburn
Hey there,

I'm quite new to C# but have an extensive background in Java so I know all the basics and perhaps more. But I've found i'm struggling with C#'s answer to dynamic binding at runtime.

...
Forum: C# Aug 28th, 2008
Replies: 4
Views: 420
Posted By Acidburn
Whats wrong with this syntax? I can't figure it out for the life of me!


String str = ((String)result[i][1] ? (String)result[i][1] : "");




its doing me trunk in :p
Forum: MS SQL Aug 13th, 2008
Replies: 0
Views: 682
Posted By Acidburn
Hey guys I've got the following code drawn up. But it doesnt work has I wanted it to and can't figure out why.

If the user doesn't exist or if that username has been disabled then the query should...
Forum: C# Jul 7th, 2008
Replies: 2
Views: 1,063
Posted By Acidburn
idiotic me! It needed a constructor. Man can't beleive i overlooked that.

Cheers for your help btw
Forum: C# Jul 7th, 2008
Replies: 2
Views: 1,063
Posted By Acidburn
Hey guys,

I'm hoping you could explain why this doesnt work:

main file

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Forum: Troubleshooting Dead Machines Jul 7th, 2008
Replies: 2
Views: 487
Posted By Acidburn
Hmm, sounds like a CPU issue, try pushing the CPU in again. After the CPU has been tested the system will generate a series of beeps.

Thats my understanding anyway, perhaps I am wrong?
Forum: USB Devices and other Peripherals Jul 7th, 2008
Replies: 4
Views: 581
Posted By Acidburn
Ok, load up in safe mode by rebooting nd holding F8 just before the the O/S is told to load.

Then attempt to uninstall it that way. Let us know how you get on
Forum: Computer Science Jul 6th, 2008
Replies: 5
Views: 1,109
Posted By Acidburn
Thanks for all your help guys, eps Colin :) I'm looking at purchasing an Amtel board to help me in my embedded studies. Basically I'm trying to get an aircraft to self fly.
Forum: Java Jul 6th, 2008
Replies: 2
Views: 3,023
Posted By Acidburn
Wouldn't it be better when your loading your application to display the splash screen, set a Timer running in the background, then close the splash screen and start the application? Not sure how that...
Forum: Java Jul 6th, 2008
Replies: 4
Views: 1,001
Posted By Acidburn
Hey guys,

Most embedded devices suc as the Amtel boards seen to require C / C++ programming, why don't they support Java? Is it question of performance? Or am I overlooking something?
Forum: USB Devices and other Peripherals Jul 6th, 2008
Replies: 4
Views: 581
Posted By Acidburn
stipid question, you tried a reboot? Sounds to me like a software conflict.

Which O/S you running?
Have you tried reinstalling the software?
Showing results 1 to 40 of 489

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC