Download Pelles C here: http://www.pellesc.se
Quotecreate, read, update, and delete (CRUD)
QuoteA simple CRUD system written in C
#include "raylib.h"
#define RAYGUI_IMPLEMENTATION
#include "raygui.h"
int main(void)
{
InitWindow(640, 200, "raygui textbox");
char text[128] = "Edit me";
bool editMode = false;
SetTargetFPS(60);
while (!WindowShouldClose())
{
Rectangle rect = {100, 80, 200, 30};
BeginDrawing();
ClearBackground(RAYWHITE);
if (GuiTextBox(rect, text, 128, editMode))
editMode = !editMode;
EndDrawing();
}
CloseWindow();
}
Page created in 0.045 seconds with 15 queries.