Forum'da ara:
Ara


Yazar Mesaj
Mesaj03.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 Laughing
______________
Mesaj03.12.2008, 18:46 (UTC)    
Mesaj konusu:

Tebrik Ederim ... Wink
______________
Mesaj03.12.2008, 21:49 (UTC)    
Mesaj konusu:

Sağol
______________
Mesaj04.12.2008, 11:18 (UTC)    
Mesaj konusu:

Tebrik ederim sizi. Surprised
______________
balikesirerdek.tr.gg ve exevolium.tr.gg adresleri şahsıma aittir. Smile
Mesaj04.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... Wink
______________
TR.GG DIŞI REKLAM YASAKTIR (GOKSEEN)
Mesaj04.12.2008, 11:56 (UTC)    
Mesaj konusu:

Helal Olsun..!!
______________
Mesaj04.12.2008, 12:07 (UTC)    
Mesaj konusu:

Güzele Bnziyor
Mesaj04.12.2008, 12:34 (UTC)    
Mesaj konusu:

yürü bea Very HappyVery HappyVery Happy
______________
Destek: support-tr( at )webme.com not:(at) değil @ Arrow Sıkça Sorulan Sorular Arrow Googleye Kayıt Resimli Anlatım
PROFESYONEL KENDİSİNİN YAPTIĞI YARDIMLARI DEĞİL, KENDİNE YAPILAN YARDIMLARI HATIRLAYANDIR.
Mesaj04.12.2008, 15:01 (UTC)    
Mesaj konusu:

Sağolun Arkadaşlar Taprojeler Biliyorum.. Bide Programlısı Olsun Dedim Laughing
Mesaj04.12.2008, 15:06 (UTC)    
Mesaj konusu:

Pardon Arkadaşlar Yanlış Sitemle Yazmışmışım Cevabı Laughing
Mesaj04.12.2008, 16:30 (UTC)    
Mesaj konusu:

açık kaynak dosyasını versene ?

ama c++ dili ilemi yazdın orası da meçhul Smile

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 Very Happy
ve düşünün cd açıp kapama tuşu nasıl yapılır Razz

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;
}
Mesaj04.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 Smile

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 Very Happy
ve düşünün cd açıp kapama tuşu nasıl yapılır Razz

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
______________
Mesaj06.12.2008, 07:05 (UTC)    
Mesaj konusu:

Visual basic kaç mb ? indirsem iyi oalcak ileride gerçek bir c++ uzamanı olmam için önemli olabilir Wink

son çıkanı + full + ketgen + türkçe yama lısını bulursam daha süper olur Wink
______________
ArrowŞekilli NicklerArrowYaptıgımOyunlar ArrowÜrünlerimArrowYaptıgımProgramlarArrowresimlerArrowSiteni ekleArrowChat/SohbetArrow3D GaleriArrowBen_Kimim?ArrowDost DestekçilerArrowForumArrowAdınıza GöreAşkArrowDestekOlArrowFalCrying or Very sadCrying or Very sadCrying or Very sadNeden mi?Crying or Very sadCrying or Very sadCrying or Very sad
Mesaj06.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 Wink

son çıkanı + full + ketgen + türkçe yama lısını bulursam daha süper olur Wink


vallaha benim kullandıgım 41 mb boyutu:D
______________
Önceki mesajları göster:   


Powered by phpBB © 2001, 2005 phpBB Group
Türkçe Çeviri: phpBB Türkiye & Erdem Çorapçıoğlu