Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › C++/C Programming › Show textbox in....

Show textbox in....

Posts 1–10 of 10 · Page 1 of 1
Zoom
Zoom
Show textbox in....
hey!
I need some help with a program i´m making....


I want to show the textbox number in the blue felt (idk name xP)

I want it to show the number in the text box in the blue felt...

What do I need to add in my code?

feel free to ask if you dont understand

#1 · 17y ago
why06
why06
I would simply add the 3 to the title. Do you have some source code and what are you trying to make?
#2 · 17y ago
Zoom
Zoom
I making a countdown.

I want the countdown = will be on the program and on the title but the title must update to see the countdown counting down from my countdown start!
#3 · edited 17y ago · 17y ago
why06
why06
Ok well if your planning to make a count there's a real easy way to do it... but first I need to know what language your using. C++ right?

If your using C++ the easiest way to make your program count down is for it to sleep for the amount of time in milliseconds before each number change. However this might not be what your looking for. This is a sleep function that uses the clock function found in the time header:
Code:
/* counts to three
*/

#include <iostream>
#include <cstdlib>
#include <time.h>
using namespace std;

void sleep(unsigned int mseconds);
int main()
          {
           int i = 0;
           do{
              cout<< i;
              sleep(1000);
              i++;
              }while(i <= 3);
           return 0;
           }

 
void sleep(unsigned int mseconds)
{
    clock_t goal = mseconds + clock();
    while (goal > clock());
}
#4 · 17y ago
Corndog
Corndog
thats a cmd prompt 'why'
hes making it in a windows box thingy...
so your code wont work.
#5 · 17y ago
why06
why06
Well he would just have to move the code for the timer into the window hes making. You know instead of using cout which sends the timer to the console he would want to put it in the title of his window. If I could see the source for his window I could do it myself, but I'm not sure how to make windows yet in C++. I'm still really nub and have yet to learn the basics of the C++ API.

I could make it do this in Java, but that wouldn't help xD
#6 · 17y ago
Zoom
Zoom
nope, will not work in my project! But can I add something to the form load like
title = textbox1.text or something
#7 · 17y ago
Zoom
Zoom
...any1 knows how to do it?
#8 · 17y ago
zhaoyun333
zhaoyun333
Are you using Visual Basic?!?!?!?!

There is a VB section for a reason.
#9 · 17y ago
zhaoyun333
zhaoyun333
Are you using Visual Basic?!?!?!?!

There is a VB section for a reason.
#10 · 17y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help] How do you make a textbox show as *? Like for a password box in VBBy Gasps Its Michael Jackson in Programming Tutorials
    10Last post 16y ago
  • Warrock.exe dosent show on WPEBy outrage20 in WarRock - International Hacks
    8Last post 20y ago
  • Farscape & other good showsBy Dave84311 in SCI-FI
    14Last post 20y ago
  • NEW BYPASS this is my friends bypass and mine he showed me it so yeahBy $GHOST$ in WarRock - International Hacks
    65Last post 20y ago
  • The Daily ShowBy Chronologix in Entertainment
    2Last post 20y ago

Tags for this Thread

#show#textbox