
please wait
by markofn1
PCH errors after c++20
|
Recently, c++20 came out and I updated one of my big projects to c++20, however I am running into some compilation errors that are beyond my understanding as of... |
Jun 29, 2022 at 7:00pm
[16 replies] Last: did you try the derp move of deleting the pch files and letting it reb... (by jonnin)
|
by Ganado
File binary mode distinction
|
Does the distinction of binary mode for files only exist to deal with pre- de-facto -standardized line endings (i.e. anything other than '\n', most notably Wind... |
Jun 29, 2022 at 6:40am
[5 replies] Last: [quote=Ganado]Weird restriction It allows the "implementation" to tri... (by Peter87)
|
by artful1st
Agregar un control de ActiveX a un Project de Visual C++
|
Steve White and Michael Satran you two are liars, where is: Project/Add a Project/Components and controls / Gallery of components and controls, in visual C++ 2... |
Jun 25, 2022 at 10:07pm
[no replies]
|
by seeplus
Saper game please help
|
and what has this to do with Windows programming. It seems like a console program? You can treat the board as either a 2-d array of n x n elements or as a sing... |
Jun 21, 2022 at 4:34pm
[1 reply] : Yes, I do have a solution, multiple ones as a matter of fact, but yo... (by deleted account xyzzy)
|
by KapaBaHwuk33
alt tab to console app
|
I need to alt tab to console app with function. Using #include <windows.h> Have this piece of code to make console app be always on top HWND consoleWindow... |
Jun 19, 2022 at 1:32am
[1 reply] : here are instructions to AOT a console window. https://www.thewindows... (by jonnin)
|
Visual Studio 2022 |
I am trying to learn C. I am using Windows 10. My problem right now is with Visual Studio 2022. I can't figure out how to use Visual Studio 2022 to enter a s... |
Jun 13, 2022 at 2:11am
[6 replies] Last: Thank you to everyone who took time to reply. (by PolkaDotBowTie)
|
by Mulligan911
Implicit type conversion and time measurement
|
I'm implementing a game loop in `c++` using the `timeGetTime` function like below: // ... DWORD oldtime = 0, newtime = 0, delta = 0; /... |
Jun 10, 2022 at 7:38pm
[5 replies] Last: A possible consideration of using <chrono> is cross-platform, if the... (by deleted account xyzzy)
|
by Cyclone
Can't Add a new wiindows form
|
Hi, I am using Visual studio 2019. I can't seem to add a new form to my C++ CLI application. If I remember correctly I was able to do it in the past but I do... |
Jun 9, 2022 at 9:56pm
[3 replies] Last: There is no CLR Windows form in the list. (by Cyclone)
|
by lcmarincek
Windows Programming for beginners
|
Hi I´m an experienced C++ programmer, but always developed software using Linux. Now I need to develop some systems for Windows. My focus is the back end, ... |
Jun 9, 2022 at 3:37am
[6 replies] Last: the web can be confusing, but microsoft's developer documentation is r... (by jonnin)
|
by Mulligan911
Game loop and time measurement
|
There is the function `Sys_Milliseconds`: int curtime; int Sys_Milliseconds (void) { static int base; static qboolean initialized ... |
Jun 4, 2022 at 5:02pm
[1 reply] : Get that Déjà vu feeling all over again. https://www.cplusplus.com/f... (by salem c)
|