Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.10.03;
Скачать: CL | DM;

Вниз

win   Найти похожие ветки 

 
Eagle8 ©   (2004-08-04 08:51) [0]

Как получить string директорию windows


 
Думкин ©   (2004-08-04 08:59) [1]

The GetWindowsDirectory function retrieves the path of the Windows directory. The Windows directory contains such files as Windows-based applications, initialization files, and Help files.


 
Кириешки ©   (2004-08-04 09:19) [2]

>Eagle8 ©   (04.08.04 08:51) 

  Думкин ©   (04.08.04 08:59) [1]

var
buffer : array [0..255] of char;
begin
 GetWindowsDirectory(buffer, 255);
 label1.caption := strpas(buffer);
end;


 
icWasya ©   (2004-08-04 10:23) [3]


function GetSystemDir: string;
var
 Buffer: array[0..1023] of Char;
begin
 SetString(Result, Buffer, GetSystemDirectory(Buffer, SizeOf(Buffer)));
end;
function GetTempDir: string;
var
 Buffer: array[0..1023] of Char;
begin
 SetString(Result, Buffer, GetTempPath(SizeOf(Buffer),Buffer));
end;

function GetWindowsDir: string;
var
 Buffer: array[0..1023] of Char;
begin
 SetString(Result, Buffer, GetWindowsDirectory(Buffer, SizeOf(Buffer)));
end;


 
OSokin ©   (2004-08-10 20:13) [4]

В реестре еще было что-то... Где - не помню, но где-то в самом начале (1 или 2 ветки)


 
Artin   (2004-08-20 15:22) [5]

Смотри в реестре !
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders


 
Artin   (2004-08-20 15:24) [6]

или здесь
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders


 
Artin   (2004-08-20 15:29) [7]

Удалено модератором



Страницы: 1 вся ветка

Текущий архив: 2004.10.03;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.021 c
3-1094463960
galexis
2004-09-06 13:46
2004.10.03
Передача данных запроса к БД из потока


3-1094036403
Andrey
2004-09-01 15:00
2004.10.03
Создание псевдонима при инсталяции


14-1094447269
hawkins
2004-09-06 09:07
2004.10.03
как поставить защиту на свою прог-му?


8-1089171155
Леприкон
2004-07-07 07:32
2004.10.03
"Индикатор ритма"


14-1095089567
Knight
2004-09-13 19:32
2004.10.03
А что такое Альтернативный ввод текста и где его найти?