giovedì, aprile 15, 2010

Programmazione Visual Basic in Excel 2007

Per attivare gli strumenti di programmazione Visual Basic in Excel 2007:
Pulsante Office, Opzioni Excel, Impostazioni generali:
segno di spunta all'opzione
Mostra scheda Sviluppo sulla barra multifunzione.
Alla barra multifunzione viene aggiunta la scheda Sviluppo.

martedì, aprile 13, 2010

Microsoft Office 2007: change the user interface language

1. Click Start, click All Programs, click Microsoft Office, click Microsoft Office Tools, and then click Microsoft Office 2007 Language Settings.
2. Click the Display Language tab.
NOTE The Display Language tab is only visible after you install a Language Pack.
3. Select the language that you want to use for the Ribbon, menus, and dialog boxes from the Display Microsoft Office menus and dialog boxes in list.
4. Select the language that you want to use for Help from the Display Help inlist.
5. If you have three or more languages installed, the Display language priority order list is displayed. To change the language priority, select a language in the list, and then click Up or Down.
(http://office.microsoft.com)

mercoledì, aprile 07, 2010

mysql Error 1045 con il comando LOAD DATA

in mysql il comando LOAD DATA produce messaggio di errore
ERROR 1045 (28000): Access denied for user 'user1'@'localhost' (using password: YES)

soluzione:
da root di mysql impostare il comando GRANT FILE

mysql> use db1
(nome del database)
mysql> grant file on *.* to user1@localhost identified by 'mypassword';
(utilizzare nome utente e password a cui assegnare i permessi)

N.B.: il file contenente i dati da caricare deve essere posizionato nella directory del database di mysql; se invece si vuole usare un file della directory locale dell'utente, occorre aggiungere la clausola LOCAL nel comando LOAD DATA:

Esempio:
mysql>load data local infile "dati.txt" into table movim fields terminated by ',';

martedì, aprile 06, 2010

Convertire video da .avi a .flv

Si può usare YouTube:
carica su YouTube il file .avi
scarica da YouTube lo stesso video (per esempio con RealPlayer Downloader)
viene scaricato in formato .flv

(prova: un file .avi da 12,7 MB è diventato un .flv da 989K)

in alternativa si può usare il software Adobe Flash Video Encoder

sabato, aprile 03, 2010

Parametri in Query Builder di Visual Basic

Con i database di Access la query in SQL nell'ambiente Visual Basic, Generatore di query (Query Builder), per indicare un parametro usa il carattere ? (punto interrogativo), come nei seguenti esempi:

WHERE (nomecampo = ?)

con Like:
WHERE (nomecampo LIKE '%' & ? & '%')