Yazar |
Mesaj |
-
dinleilgili
Aktif Üye
|
03.12.2008, 18:42 (UTC) Mesaj konusu: Cd Rom Aç Kapama Hoşunuza Gidicek |
|
|
Arkadaşlar Bugün Canım Sıkıldı Program Yapmayı Düşündüm Ve Bi Cd Rom Aç Kapamayı Yaptım.. Ve İl Bedava-Sitemde Paylaşıyorum.. İsteyenlere Özel Mesajdan Atabilirim...
Program:2 butondan oluşuyor. Aç Düğmesine Basınça Cd Rom Açılıyor. Kapa Düğmesine Basınca Cd Rom Kapanıyor..
Eğlenceli Birşey ______________ |
|
↑
|
|
|
-
sanalsahne
Uzman Üye
|
03.12.2008, 18:46 (UTC) Mesaj konusu: |
|
|
Tebrik Ederim ... ______________ |
|
↑
|
|
|
-
dinleilgili
Aktif Üye
|
03.12.2008, 21:49 (UTC) Mesaj konusu: |
|
|
Sağol ______________ |
|
↑
|
|
|
-
benimsitem1993
Uzman Üye
Konum: Istanbul..
|
04.12.2008, 11:18 (UTC) Mesaj konusu: |
|
|
Tebrik ederim sizi. ______________ balikesirerdek.tr.gg ve exevolium.tr.gg adresleri şahsıma aittir. |
|
↑
|
|
|
-
taprojeler
Bedava-Sitem Bağımlısı
|
04.12.2008, 11:24 (UTC) Mesaj konusu: Selamlar... |
|
|
Çok basit bir şey.Seni küçümsemek istemem.Klavyene sağlık öncelikle.Ama yani zaten normaldede bilgisayarımın üzerine çitf tıklayıp cd rom!a da sağ tıklayınca "çıkar" diye bir seçenek var... ______________ TR.GG DIŞI REKLAM YASAKTIR (GOKSEEN) |
|
↑
|
|
|
-
sanalprestij
Bedava-Sitem Bağımlısı
|
04.12.2008, 11:56 (UTC) Mesaj konusu: |
|
|
Helal Olsun..!!______________ |
|
↑
|
|
|
-
gazikilic
Bedava-Sitem Bağımlısı
|
04.12.2008, 12:07 (UTC) Mesaj konusu: |
|
|
Güzele Bnziyor |
|
↑
|
|
|
-
gececi40
Uzman Üye
|
04.12.2008, 12:34 (UTC) Mesaj konusu: |
|
|
|
|
↑
|
|
|
-
fenizim
Acemi Üye
|
04.12.2008, 15:01 (UTC) Mesaj konusu: |
|
|
Sağolun Arkadaşlar Taprojeler Biliyorum.. Bide Programlısı Olsun Dedim |
|
↑
|
|
|
-
fenizim
Acemi Üye
|
04.12.2008, 15:06 (UTC) Mesaj konusu: |
|
|
Pardon Arkadaşlar Yanlış Sitemle Yazmışmışım Cevabı |
|
↑
|
|
|
-
hakannet55
Uzman Üye
|
04.12.2008, 16:30 (UTC) Mesaj konusu: |
|
|
açık kaynak dosyasını versene ?
ama c++ dili ilemi yazdın orası da meçhul
c++ dili ile mesela ben standart pencere yi bile zor açık kaynagıda şu;
ve yaptıgı şey sadece boş windows penceresi ve başlıgındada
"BASİT WİNDOWS UYGULAMASI" yazıyor
ve düşünün cd açıp kapama tuşu nasıl yapılır
ayrıca normal windowsta sadece cd çıkarma özelligi var geri kapatma yok...
Kod: #include <windows.h>
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); /* Declare Windows procedure */
char szClassName[ ] = "WindowsApp"; /* Class Name */
int WINAPI WinMain(HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)
{
HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */
/* The WNDCLASSEX structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WndProc; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof(WNDCLASSEX);
wincl.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon(NULL, IDI_ASTERISK);
wincl.hCursor = LoadCursor(NULL, IDC_CROSS);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0;
wincl.cbWndExtra = 0;
wincl.hbrBackground = (HBRUSH) GetStockObject(RedrawWindow);
/* Register the window class, if fail quit the program */
if(!RegisterClassEx(&wincl)) return 0;
/* The class is registered, create the window*/
hwn = CreateWindowEx(
0,
szClassName,
"BASİT WİNDOWS UYGULAMASI",
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
CW_USEDEFAULT,
400,
450,
HWND_DESKTOP,
NULL,
hThisInstance,
NULL
);
/* Make the window visible on the screen */
ShowWindow(hwnd, nFunsterStil);
/* Run the message loop. It will run until GetMessage( ) returns 0 */
while(GetMessage(&messages, NULL, 0, 0))
{
TranslateMessage(&messages);
DispatchMessage(&messages);
}
/* The program return-value is 0 - The value that PostQuitMessage( ) gave */
return messages.wParam;
}
/* This function is called by the Windows function DispatchMessage( ) */
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) /* handle the messages */
{
case WM_DESTROY:
PostQuitMessage(0); /* send a WM_QUIT to the message queue */
break;
default: /* for messages that we don't deal with */
return DefWindowProc(hwnd, message, wParam, lParam);
}
return 0;
}
|
|
↑
|
|
|
-
dinleilgili
Aktif Üye
|
04.12.2008, 18:43 (UTC) Mesaj konusu: |
|
|
hakannet55 yazmış: açık kaynak dosyasını versene ?
ama c++ dili ilemi yazdın orası da meçhul
c++ dili ile mesela ben standart pencere yi bile zor açık kaynagıda şu;
ve yaptıgı şey sadece boş windows penceresi ve başlıgındada
"BASİT WİNDOWS UYGULAMASI" yazıyor
ve düşünün cd açıp kapama tuşu nasıl yapılır
ayrıca normal windowsta sadece cd çıkarma özelligi var geri kapatma yok...
Kod: #include <windows.h>
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); /* Declare Windows procedure */
char szClassName[ ] = "WindowsApp"; /* Class Name */
int WINAPI WinMain(HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)
{
HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */
/* The WNDCLASSEX structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WndProc; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof(WNDCLASSEX);
wincl.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon(NULL, IDI_ASTERISK);
wincl.hCursor = LoadCursor(NULL, IDC_CROSS);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0;
wincl.cbWndExtra = 0;
wincl.hbrBackground = (HBRUSH) GetStockObject(RedrawWindow);
/* Register the window class, if fail quit the program */
if(!RegisterClassEx(&wincl)) return 0;
/* The class is registered, create the window*/
hwn = CreateWindowEx(
0,
szClassName,
"BASİT WİNDOWS UYGULAMASI",
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
CW_USEDEFAULT,
400,
450,
HWND_DESKTOP,
NULL,
hThisInstance,
NULL
);
/* Make the window visible on the screen */
ShowWindow(hwnd, nFunsterStil);
/* Run the message loop. It will run until GetMessage( ) returns 0 */
while(GetMessage(&messages, NULL, 0, 0))
{
TranslateMessage(&messages);
DispatchMessage(&messages);
}
/* The program return-value is 0 - The value that PostQuitMessage( ) gave */
return messages.wParam;
}
/* This function is called by the Windows function DispatchMessage( ) */
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) /* handle the messages */
{
case WM_DESTROY:
PostQuitMessage(0); /* send a WM_QUIT to the message queue */
break;
default: /* for messages that we don't deal with */
return DefWindowProc(hwnd, message, wParam, lParam);
}
return 0;
}
ben Bunu Visual Basi 6 ile yaptım ______________ |
|
↑
|
|
|
-
hakannet55
Uzman Üye
|
06.12.2008, 07:05 (UTC) Mesaj konusu: |
|
|
|
|
↑
|
|
|
-
dinleilgili
Aktif Üye
|
06.12.2008, 09:50 (UTC) Mesaj konusu: |
|
|
hakannet55 yazmış: Visual basic kaç mb ? indirsem iyi oalcak ileride gerçek bir c++ uzamanı olmam için önemli olabilir
son çıkanı + full + ketgen + türkçe yama lısını bulursam daha süper olur
vallaha benim kullandıgım 41 mb boyutu:D ______________ |
|
↑
|
|
|
|