SalimMeghani

Primary tabs

TypeTitleAuthorRepliesLast updated
StoryWndProc (Part 2) SalimMeghani07 years 3 months ago
StoryWndProc (Part 1) SalimMeghani07 years 3 months ago
StoryWinMain SalimMeghani07 years 4 months ago
Blog entryThe Sighs of a Mouse: Essays and Stories by Paul Chappell (FTSE100/Footsie) tcook412 years 2 months ago
Forum topicAll stories have disappeared.. SalimMeghani1212 years 5 months ago
Forum topicNew Way of Evaluating Reverse Polish? SalimMeghani012 years 6 months ago
Forum topicTechnical advice Natalia613 years 1 month ago
Forum topicAhmadineBad? Mangone2915 years 4 months ago
Forum topicMore Terrorists? Mangone1115 years 8 months ago
Forum topicThe Development Of A Simple Spreadsheet Program Dendrite1718 years 5 months ago

My stories

Parser().

void parser(int *error, char *source, char *dest, int qol, int rw, int uniq) { int gloop=0; int dloop=0; int crloop=0, drloop=0; int alloop=0; int...

Misc. Functions (Part 2).

// Find a bracket. int isbracket(char c) { if (c=='('||c==')') return 1; else return 0; } // Find a decimal point. int isstop(char c) { if (c=='.')...

expr_p()

// Convert a formula to its raw native numeric form (including brackets). double expr_p(int *error, char *form, int qol, int rw) { char *source=NULL...

Misc. functions (1).

// Workout current column lettering dependant on integer column. void current_column(char *fch, char *sch, int column) { div_t x; if (column<=26...

Dialog Box (2).

// // Message handler for Dialog Box. LRESULT CALLBACK Input(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case...

Pages