Kendimce geliştirmek istediğim.Basit ama kullanışlı bir borsa takip programı yapmak istiyorum.Genelde web tabanlı oluyor.Kutucuğa yazdığım hisseyi Hisse adı Alış fiyatı Kar Zarar durumu bu kadar. https://finans.mynet.com/borsa/canliborsa/#ALL #include <windows.h> /* This is where all the input to the window goes to */ LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) { switch(Message) {
/* Upon destruction, tell the main thread to stop */ case WM_DESTROY: { PostQuitMessage(0); break; }
/* All other messages (a lot of them) are processed using default procedures */ default: return DefWindowProc(hwnd, Message, wParam, lParam); } return 0; } /* The 'main' function of Win32 GUI programs: this is where execution starts */ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { WNDCLASSEX wc; /* A properties struct of our window */ HWND hwnd; /* A 'HANDLE', hence the H, or a pointer to our window */ MSG msg; /* A temporary location for all messages */ /* zero out the struct and set the stuff we want to modify */ memset(&wc,0,sizeof(wc)); wc.cbSize = sizeof(WNDCLASSEX); wc.lpfnWndProc = WndProc; /* This is where we will send messages to */ wc.hInstance = hInstance; wc.hCursor = LoadCursor(NULL, IDC_ARROW);
/* White, COLOR_WINDOW is just a #define for a system color, try Ctrl+Clicking it */ wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wc.lpszClassName = "WindowClass"; wc.hIcon = LoadIcon(NULL, IDI_APPLICATION); /* Load a standard icon */ wc.hIconSm = LoadIcon(NULL, IDI_APPLICATION); /* use the name "A" to use the project icon */ if(!RegisterClassEx(&wc)) { MessageBox(NULL, "Window Registration Failed!","Error!",MB_ICONEXCLAMATION|MB_OK); return 0; } hwnd = CreateWindowEx(WS_EX_CLIENTEDGE,"WindowClass","Borsa Takip",WS_VISIBLE|WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, /* x */ CW_USEDEFAULT, /* y */ 640, /* width */ 480, /* height */ NULL,NULL,hInstance,NULL); if(hwnd == NULL) { MessageBox(NULL, "Window Creation Failed!","Error!",MB_ICONEXCLAMATION|MB_OK); return 0; } /* This is the heart of our program where all input is processed and sent to WndProc. Note that GetMessage blocks code flow until it receives something, so this loop will not produce unreasonably high CPU usage */ while(GetMessage(&msg, NULL, 0, 0) > 0) { /* If no error is received... */ TranslateMessage(&msg); /* Translate key codes to chars if present */ DispatchMessage(&msg); /* Send it to WndProc */ } return msg.wParam; } |
Borsa Takip Programı DEV-C++ APi Programlama



-
-
Bu dille bu işi yapmak amelelikten başka bir şey değildir başka diller kullan
< Bu ileti mobil sürüm kullanılarak atıldı > -
Siz kendinizi hangi dilde geliştirdiniz.12 yıl dır uğraşmıyorum.Şu an en popüler yazılım dili python demi
-
ben c# tarafıyla ilgileniyorum
-
Kodlama yaparken derleyici olarak ne kullanıyorsunuz.Ben hiç C# ile uğraşmadım.
-
visual studio bazen de basit kod testleri için linqpad
-
C# Api kodlar lazım bildiğin bir adres var mı.???
-
iyi de ben zaten ilk mesajda api kullanmanın zahmetli olduğunu kastettim hazır fonksiyonlar varken gereksiz illaki arıyorsan
msdne zaten hepsi var bak örnek
https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-createwindowexa
veya c# için
-
Visual studio alışmak zaman alacak Sadece C# görsel kodları için hangisini kurmak lazım.
-
jetbrains in rider ı da var o da kullanılabilir çok daha başlangıç için sharpdevelop var
-
C# görsel kodları yazmak için nerden başlanmalı Tavsiyen nedir.Uzun zamandır kod yazmıyorum.
-
zaten form açıp button listbox vb ekleyecen c# görsel programlama aratın çok kaynak video var
-
Yardımın için teşekkür ederim.Sorun olursa danışırım.
-
Merhaba
Çözümü buldum.Visual Studio 2022 araç kutusu ctrl+alt+x
Create a Windows Forms app in Visual Studio with C#
https://learn.microsoft.com/en-us/visualstudio/ide/create-csharp-winform-visual-studio?view=vs-2022
https://learn.microsoft.com/tr-tr/visualstudio/ide/create-csharp-winform-visual-studio?view=vs-2022
< Bu mesaj bu kişi tarafından değiştirildi azata -- 26 Aralık 2022; 7:55:29 >
Bu mesaj IP'si ile atılan mesajları ara Bu kullanıcının son IP'si ile atılan mesajları ara Bu mesaj IP'si ile kullanıcı ara Bu kullanıcının son IP'si ile kullanıcı ara
KAPAT X