View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Francesco Geri Francesco Geri is offline
external usenet poster
 
Posts: 8
Default NumberFormat e date

Ops, I'm sorry, I posted in italian....

This is the translation:

I want to format an excel worksheet column to contains some dates. My code
VB.NET is:

CType(workSheet.Columns(3), Excel.Range).NumberFormat = "dd/mm/yyyy"

but that code raise an exception (the numerical format is incorrect... etc
etc)

The code correct is:
CType(workSheet.Columns(3), Excel.Range).NumberFormat = "gg/mm/aaaa"

because my operating system (or my excel?) is installed in italian.

But, I want a code that work well anywhere... How can I obtain that?

Thanks!

Franx




"Francesco Geri" ha scritto nel messaggio
...
Salve, ho una colonna in cui metto delle date via codice, vorrei
formattarla e per questo uso:

CType(workSheet.Columns(3), Excel.Range).NumberFormat = "dd/mm/yyyy"

(codice VB.NET)

Quel codice genera la seguante eccezione:
---------------------
Impossibile utilizzare il formato numerico digitato.
Utilizzare uno dei formati numerici incorporati. [ ... ]
-------------------------

funziona bene se uso "gg/mm/aaaa" invece di "dd/mm/yyyy".

Non mi sembra il caso di usare "gg/mm/aaaa", visto che il codice dovrebbe
funzionare sempre, anche se ho sistema operativo ed Excel in inglese....

Come potre fare?
Ciao e grazie a tutti

Franx