hallo,
Sub Mandays()
Dim DatProjektMid As Date
Dim iRow As Integer
...
DatProjektMid = Range("X" & iRow).Value
...
End Sub
versucht einen wert anzunehmen als datum. aber du gibst ihm nichts zur�ck.
versuch es so:
Sub Mandays()
Dim DatProjektMid As Date
Dim iRow As Integer
...
if Range("X" & iRow).Value ="" then exit sub
DatProjektMid = Range("X" & iRow).Value
...
End Sub
damit �berspringst du allerdings nur die fehlermeldung...ich wei� ejtzt nciht wie dein code weiterl�uft.
_________________
Gru� kj
PS: R�ckmeldung erbeten!
****************************************
Chuck Norris liest keine B�cher, er starrt sie so lange an, bis die B�cher freiwillig alles erz�hlen.
runtime error
- Summary: when I tried my vb.net web database on my localhost -->It's ok. But I have got "Runtime Error" when I uploaded the ASP.net folder to Web Hosting. How can I solve this problem. Thank for helping me ...
runtime error
- Summary: When I am surfing the web i always get an error message of runtime error, when i click the back or the forward button on the toolbar the runtime error message will appeared can anyone help me to slove...
c++ runtime errors: missing dll??
- Summary: I have compiled a program using very old code in Visual C++ (I had to update one line in a header file) and am now getting runtime errors when I open a certain part of the application. The main progra...
No comments:
Post a Comment