Login

Password

Eulogika Blog


Question : How to set iPhone APN when it is hidden ? Answer !

lorenzo.eul on 06-16-2010 04:45 blogged :

The Apple application iPhone Configuration Utility for Windows just saved my day.

Many mobile operators block the access to APN setting on the iPhone. With this application you are free to change that setting.

it's very useful, and you can change much more than that : quite every setting of your iPhone, like mail settings, VPN, etc....

all that is needed for Enterprise business =)

Enjoy !



Eulogika and Proservice win International Innovation Award Metef 2010

lorenzo.eul on 04-28-2010 10:07 blogged :

We are glad to communicate that the web-based platform named “ITACA WEB”, that we have developed over last years on behalf of ProService s.r.l. with the purpose of solving inbuilt limits of control software of the metallurgical process, has been selected as the winner of the first edition of the International Innovation Award Metef 2010, for the category “Technologies and Processes”.

 

The Award is intended to valorize (according to the following parameters: degree of originality and innovation, the performance features and the competitive advantages, the energy saving and eco-sustainability) the innovative content proposed by the exhibiting companies in the different areas of interest at the 2010 edition of the International Aluminum Exhibition.

 

We remind you that on ITACA WEB are based the software ITACA (for the control of the cast iron quality) and ATHENA (for the control of the molten aluminum quality) software, as evidence, once again, of the high level of innovation and performance features that distinguish these two products developed by Eulogika on behalf of ProService s.r.l.



MonoTouch : How to remove a View from a stack like a NavigationController

lorenzo.eul on 03-02-2010 08:33 blogged :
public class myParentControllerName: UIViewController
{
    public override void ViewDidLoad ()
    {
        var controllers = NavigationController.ViewControllers.ToList();
        for (int i = 0; i < controllers.Count; i++)
        {
            if (controllers[i] is myViewControllerName)
                controllers.RemoveAt(i);
        }
        NavigationController.ViewControllers = controllers.ToArray();
    }
}


iPad : the new iPhone, just bigger !

lorenzo.eul on 01-27-2010 09:39 blogged :

The long awaited iPad is here : 

http://www.apple.com/ipad/

We are already downloading the new iPad SDK =)



Google OverWhelming !

lorenzo.eul on 01-21-2010 04:39 blogged :



Hack : how to get 360 degrees video

lorenzo.eul on 01-20-2010 07:53 blogged :

This was a good hack, to get 360 degrees videos

Check here the hardware :

http://hackaday.com/2010/01/04/360-degree-video-for-next-to-nothing/

 

And here is the result (you can "navigate" inside the running video !)

http://www.luislopeznavarro.es/CAMARA360/index.html

 



Real Girl or Computer Graphics ?

lorenzo.eul on 01-19-2010 08:16 blogged :

Just try to guess ...

 

 

Would you believe it ? it is computer graphics ... an image of Korean actress Song Hye Kyo made by Max Edwin Wahyudi using Pixelogic Zbrush and 3DS Max.

 



C# DataGridView, Slow scrolling and the solution

lorenzo.eul on 01-15-2010 04:49 blogged :

This is interesting : starting from .Net 2.0 ( the issue didn't appear on .Net 1.1, and is still here also on .Net 3.5 ) the Microsoft DataGridView Winforms control has become really, really sluggish. I never noticed it, until I had to fill the control with a lot of records, with a reasonable number of columns, and full screen.

What happened is that the scroll is very slow, at the point that you can count the seconds while the grid is drawing. The solution is to enable an hidden feature of DataGridView, that is DoubleBuffered.

Just add System.Reflection to your using list, and the following code, wherever you prefer in you application.

   1:  public static class ExtensionMethods
   2:  {
   3:      public static void DoubleBuffered(this DataGridView dgv, bool setting)
   4:      {
   5:          Type dgvType = dgv.GetType();
   6:          PropertyInfo pi = dgvType.GetProperty("DoubleBuffered",
   7:              BindingFlags.Instance | BindingFlags.NonPublic);
   8:          pi.SetValue(dgv, setting, null);
   9:      }
  10:  }

Found this solution here : http://bitmatic.com/csharp/fixing-a-slow-scrolling-datagridview




Valid XHTML 1.0!Il contenuto di questo sito è copyright Eulogika s.r.l. - È vietata la riproduzione anche parziale.