Lameth's Blog
Just another WordPress.com weblog

Archive for the 'Programmierung' Category

Flex datechooser get the date which mouse is over

August 31, 2009

Currently I ran into the problem how to get the date from a <mx:Datechooser> where the mouse is over. Obviously there is no direct possibility to get it from the datechooser component. I googled quite days around and finally I found a solution for this.
The idea is to generate mouseover events from the datechooser. Normally [...]

Spread Toolkit Compiling

July 25, 2007

check_spread: check_spread.c
cc -I/usr/local/include -I/server/spread/include -c check_spread.c
cc check_spread.o -L/usr/local/lib -L/server/spread/lib -lspread -o check_spread

> Spread changed their library name with the 3.17 release. I
> have a patch to fix this, but I won’t have access to my
> system [...]

Google WebServices

June 21, 2007

Using the Google Web ServicePublished 31 October 06 09:12 AM | Coding4Fun This article demonstrates consuming a Web service. It uses Google Search Web services to build an application that searches for given keywords.Peter BernhardtDifficulty: EasyTime Required: 1-3 hoursCost: FreeSoftware: Visual Studio Express Editions, Google API.Hardware:Download: DownloadIf you’re like me, you probably spend [...]

GDB

June 21, 2007

4. Running Programs Under GDBWhen you run a program under GDB, you must first generate debugging information when you compile it.You may start GDB with its arguments, if any, in an environment of your choice. If you are doing native debugging, you may redirect your program’s input and output, debug an already running process, or [...]