Here is where I convert the canvases:
//make tabs
iEasyTab = EasyTab_ConvertFromCanvas (panelStonePop, PANELUI_CANVAS);
iRc=EasyTab_LoadPanels (panelStonePop, iEasyTab, 1, "stonepop.uir",__CVIUserHInst,PANEL1, &easytab1, PANEL2, &easytab2, PANEL3, &easytab3, PANEL4, &easytab4, PANEL5, &easytab5, 0);
And here is where I try to blank out the content on each of the 5 cards. I think of the easytabs as index cards. That is what I mean by "card". Here it is:
iRc=ResetTextBox (panelStonePop, PANEL1_TEXTBOX, "");
iRc=ResetTextBox (panelStonePop, PANEL2_TEXTBOX, "");
iRc=ResetTextBox (panelStonePop, PANEL3_TEXTBOX, "");
iRc=ResetTextBox (panelStonePop, PANEL4_TEXTBOX, "");
iRc=ResetTextBox (panelStonePop, PANEL5_TEXTBOX, "");
What should my ResetTexBox say to blank out a card?