|
|
|
Преобразование даты в троку для VB 6.3
|
|||
|---|---|---|---|
|
#18+
Подскажите функцию преобразования типа date в string ... |
|||
|
:
Нравится:
Не нравится:
|
|||
| 18.11.2004, 09:24:46 |
|
||
|
Преобразование даты в троку для VB 6.3
|
|||
|---|---|---|---|
|
#18+
Уже нашел если кому интересно Microsoft® Visual Basic® Scripting Edition CStr Function Language Reference Description Returns an expression that has been converted to a Variant of subtype String. Syntax CStr(expression) The expression argument is any valid expression. Remarks In general, you can document your code using the data type conversion functions to show that the result of some operation should be expressed as a particular data type rather than the default data type. For example, use CStr to force the result to be expressed as a String. You should use the CStr function instead of Str to provide internationally aware conversions from any other data type to a String subtype. For example, different decimal separators are properly recognized depending on the locale setting of your system. The data in expression determines what is returned according to the following table: If expression is CStr returns Boolean A String containing True or False. Date A String containing a date in the short-date format of your system. Null A run-time error. Empty A zero-length String (""). Error A String containing the word Error followed by the error number. Other numeric A String containing the number. The following example uses the CStr function to convert a numeric value to a String: Dim MyDouble, MyString MyDouble = 437.324 ' MyDouble is a Double. MyString = CStr(MyDouble) ' MyString contains "437.324". -------------------------------------------------------------------------------- ... |
|||
|
:
Нравится:
Не нравится:
|
|||
| 18.11.2004, 10:48:37 |
|
||
|
Преобразование даты в троку для VB 6.3
|
|||
|---|---|---|---|
|
#18+
Уже нашел если кому интересно ... CStr ... :) format$ для данной цели получше будет... ... |
|||
|
:
Нравится:
Не нравится:
|
|||
| 18.11.2004, 11:47:30 |
|
||
|
Преобразование даты в троку для VB 6.3
|
|||
|---|---|---|---|
|
#18+
Format$ (можно и без $ :)) Format сделает тебе дату в строке как надо (см. format - F1) Вообще то есть еще способ :) Любой тип (кроме объектов) преобразует в строку. Далается это так: Dim A as Long, B as Date, S1 as string, S2 as string A=1: B = Date S1=A & "" S2 = B & "" Debug.Print S1, S2 ' Вот собственно и все, успользуя связку [TYPE] & "" практически все переводится в строку. Неявное преобразование типов :) ... |
|||
|
:
Нравится:
Не нравится:
|
|||
| 19.11.2004, 12:32:12 |
|
||
|
|

start [/forum/topic.php?fid=60&tid=2168582]: |
0ms |
get settings: |
9ms |
get forum list: |
16ms |
check forum access: |
2ms |
check topic access: |
3ms |
track hit: |
32ms |
get topic data: |
11ms |
get forum data: |
2ms |
get page messages: |
34ms |
get tp. blocked users: |
1ms |
| others: | 200ms |
| total: | 310ms |

| 0 / 0 |
