components

Need advice for mass mailer in Delphi

I'm trying to develop a mass mailing application and would like to use Delphi for it. What components or libraries would be my best options (for Delphi7). Can they handle sending about 25,000 emails? The application is not for spamming, so I'm curious if correctly authenticating and playing by the rules will add some delay to the process...

Event handling in component based game engine design

I imagine this question or variations of it get passed around a lot, so if what I'm saying is a duplicate, and the answers lie elsewhere, please inform me. I have been researching game engine designs and have come across the component-based entity model. It sounds promising, but I'm still working out its implementation. I'm considerin...

JDocumentRAW::addCustomTag() error on joomla component using jQuery.getJSON()

Hello All, i m newbie to joomla, although i have worked a lot with jQuery so i feel comfortable in jQuery rather than mootools, now i m developing a joomla component, so what i do.. on joomla/administrator/component/com_property/admin.controller.php i write below code defined('_JEXEC') or die('Restricted access');...

Loading content dynamically (panels) in an Ext Js Viewport

Well basically im looking on this problem, i have many components with dinamic stuff that is written in the server side with PHP. Depending on the user my components will change, based on the role of the user. So i need to know any ways/examples/info on how to do this. 1- I used the load function EXTJS has, but it clearly says i won...

Spring graph component for ASP.NET MVC

Hi, I'm looking for a recommended spring graph to be used with ASP.NET MVC Flex spring graph example: http://mark-shepherd.com/SpringGraph/MoleculeViewer/bin/MoleculeViewer.html Thanks, E ...

Using WiFi to triangulate instead of GPS

I know its probably possible, but is it practical and doable to try and geo-position someone using WiFi to triangulate... Thinking if I was underground and didn't have access to GPS, could I setup WiFi spots around the place to help locate someone. Or if I was on a plane or a train (which is constantly moving), could I setup WiFi spot...

How to get the current MavenSession or MavenExecutionRequest from a Plexus Component

I created a Plexus component to house common logic for several Mojos I want to create. I have been able to pass information like localRepository and project from the Mojo (and test cases). I was wondering if there is a way to get the MavenSession or MavenExecutionRequest from within the component without having to pass them as paramete...

How to display xml data in OWC 10 component in ASP.net?

Hi We are using Office Web component V10.0 in ASP.NET 3.5 website. The rquiremetn is to display xml data in OWC Pivot table component. How can I acheive that? Thanks ...

Lack of component inheritance in NHibernate - how do I get around this?

I'm trying to do almost exactly the same thing as this post: http://colinjack.blogspot.com/2008/03/nhibernate-working-around-lack-of.html but I can't get the suggested solution to work for me. Essentially I have one main class, which has a reference to an abstract class. The abstract class has several implementations. I want the comm...

How to add Custom marker icon to Google Map?

Hello, I am using this extension of joomla for google map http://extensions.joomla.org/extensions ... /maps/5248. But unable to change the placemark icon everytime when I add new marker. I want the functionality like My map in google for the placemark. Can anyone know how to do it with this extention or any alternative for this? Than...

How do I resuse HTML snippets in a django view

I am working on a django project (my first), and in one of my views, I have a sophisticated html snippet with JS weaved within it. I would like to reuse this "component" somewhere else in the same view. Is there a way of achieving this? Please let me know if this design is faulty to begin with? ...

Inserting inline JComponents into a JTextPane?

Hello, I'm working on a project that needs to be able to have JComponents inserted into a JTextPane, along with normal text. Currently, I'm using JTextPane.insertComponent(Component) to add the JComponents, however, they seem to be added sporadically with no real organization. I finally figured out that it's inserting it wherever the car...

Component for pdf to html....?

Please suggest me any third party component to convert pdf to html.... plz reply Regards.... ...

how to use zk hbox array ?

Hi, I am not sure how to use a zk Hbox Array. I am trying to create an array of ZK Hbox components and use it within a for block. void createRow(Component container, final Node fieldNode, FieldCreator [] fieldDescription) { final Vbox fieldsRows = new Vbox(); final Hbox fieldsRow = new Hbox(); final Hbox[] fieldBox; in...

Error installing Blackberry Component pack 4.6.0

Hi Guys, I'm trying to install the BB Component pack 4.6.1 (Eclipse 3.4.1 +Windows Vista) but I got an error message: An error occurred while collecting items to be installed No repository found containing: net.rim.eide.feature.componentpack4.6.1/org.eclipse.update.feature/4.6.1.27 if I check the repository page: http://www...

Looking for solid SMTP component for Delphi 2006,

Indy is not enough for me, it must support SSL and be rock solid, can be commercial also ...

Decomposition (modularity) in functional languages

Got an idea: functions (in FP) could be composed similar was as components in OOP. For components in OOP we use interfaces. For functions we could use delegates. Goal is to achieve decomposition, modularity and interchangeability. We could employ dependency injection to make it easier. I tried to find something about the topic. No luck....

how to use Picture.LoadFromFile() in TcustomContol

I created a TSkinPanel derive from TcustomControl it has a FGraphic: TPicture. the FGraphic is drawn on the canvas of the TSkinPanel and works fine if you load and image from the TObject Inspector. but i doesnt won'k work on loading image on runtime "Form1.SkinPanel1.Picture.LoadFromFile('skin.bmp'); ...

Moving the TileList label

I'm building a thumbnail viewer in Flash CS5 using the TileList component. I know that you can adjust the alpha of the label background, but is there any way to simply move it so it appears below the thumbnail? I already created a new class which extends the ImageCell class, but I can't seem to find any methods to control the positioning...

Do I need a visitor for my component ?

I'm trying to do a small and simple GUI in C++ (with SDL). I'm experimenting with the Composite pattern to have a flexible solution. I've got a Widget class, with Component objects : for instance, there is a PaintingComponent ; if I want to draw a box, I'll use a PaintingBoxComponent, that inherits from the PaintingComponent. The ide...