Posts

Showing posts with the label Windows Programming

🔐 Virtual ATM Machine using C++ | Secure Login, Deposit & Withdraw Demo | FuzzuTech

Image
  Demo : Click Video 👇👇👇 ➤ Features : Secure PIN-based login Deposit & Withdraw Buttons Balance Display Logout and session reset Built in pure C++ with Windows API Code : #define _WIN32_WINNT 0x0601 #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <string> #include <sstream> #pragma comment(lib, "user32.lib") #pragma comment(lib, "gdi32.lib") // Global variables HWND hBalanceStatic; HWND hDepositBtn, hWithdrawBtn, hCheckBtn, hLogoutBtn; HWND hPinStatic, hPinEdit, hLoginBtn; int balance = 1000;    // initial balance const std::string correctPIN = "1234"; bool loggedIn = false; // Forward declarations LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); void UpdateBalanceText(HWND hwnd); void ShowMessage(LPCSTR msg, LPCSTR title); std::string GetTextFromEdit(HWND hwnd); void ClearPinInput(); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int nCmdShow) {     // Register Window Class     WND...

C++ Stylish Analog Clock App | Modern GUI Clock Using GDI+ (With Source Code)

Image
  Demo : Click Video 👇👇👇 Code : #include <windows.h> #include <ctime> #include <string> LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) {     switch(msg) {         case WM_PAINT: {             PAINTSTRUCT ps;             HDC hdc = BeginPaint(hwnd, &ps);             SYSTEMTIME st;             GetLocalTime(&st);             char buffer[100];             sprintf(buffer, "Time: %02d:%02d:%02d  Date: %02d-%02d-%04d",                      st.wHour, st.wMinute, st.wSecond, st.wDay, st.wMonth, st.wYear);             SetBkColor(hdc, RGB(0, 0, 0));             SetTextColor(hdc, RGB(0, 255, 0));      ...

🚀 C++ Modern GUI Login System for Windows - Stylish & Lightweight (Source Code Included)

Image
Demo : Click Video 👇👇👇 🔥 Modern C++ GUI Login System for Windows! This tutorial helps you create a fully interactive login system with a stylish Windows GUI (No Console, Full UI). 📌 Features: ✅ Windows-Based GUI (No Console Window) ✅ User Registration, Login & Password Recovery ✅ Modern UI with Buttons, Text Fields, & Message Boxes ✅ Lightweight & Fast (Uses WinAPI, No Extra Libraries) ✅ Step-by-Step Guide & Full Source Code Provided 📥 Download Source Code & Full Guide Here 👇 Code : #include <windows.h> #include <fstream> #include <string> using namespace std; LRESULT CALLBACK WindowProcedure(HWND, UINT, WPARAM, LPARAM); void RegisterUser(HWND); void LoginUser(HWND); void ForgotPassword(HWND); // Global UI Elements HWND hUsername, hPassword, hRegister, hLogin, hForgot, hLabel; void CreateMainWindow(HWND hwnd) {     // Labels     CreateWindow("STATIC", "Username:", WS_VISIBLE | WS_CHILD, 20, 20, 80, 25, hwnd, NU...