MC++/CLR app with Flash UI

yuibox No Comments »

yuiboxWell, I wasn’t sure if it was possible to create an application using flash as a UI …
Something like this:
http://assets.devx.com/articlefigs/10047.jpg
and even with a flash UI, how do i pass arguments around?

Well this project doesn’t look as good as that picture BUT it will show you the general idea of how to pass arguments between flash <-> application.

I chose CLR/C++.NET because is easier for me. You can do this with any .NET language that you preffer.

Note: Basic Knowledge of Flash and C++ is required. Read the rest of this entry »

Ruby on Rails Links

yuibox No Comments »

yuibox

My Fav RoR Links ^.^:

Ruby
http://www.ruby-lang.org/en/
Try Ruby
http://www.tryruby.hobix.com/

Read the rest of this entry »

Tutorials Links

Tutorials No Comments »

yuiboxI found these links once, in some forum, forgot which one to be honest. They are pretty handy imo. Enjoy!

I just double checked the link. Here is the latest update (July 18 2008)

Read the rest of this entry »

Generic ADO - Bogus null values from Excel sheet

yuibox No Comments »

MS’s ADO module for Excel spreadsheets tries to be smart, by attempting to determine a column’s datatype based on the first (few?) values in a column. If this value appears to be a number, but later has a text value, you might receive null fields when there is indeed a value. Clearly this is bad, and caused me an hour or two of frustration.

The solution is to include “IMEX=1″ in your DSN:

[source:c++]

OleDbConnection conn = new OleDbConnection(”Provider=Microsoft.Jet.OLEDB.4.0;”
+ “Data Source=” + _infile + “;Extended Properties=\”Excel 8.0;HDR=YES;IMEX=1\”");[/source]

See KB194124 for more details.

Design by j david macor.com.Original WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS Log in