Hmm has anyone come across this error:
General Protection Fault at 001B:68570395
I managed to reproduce the results consistently by:
Having a brand new .UIR with just a table control in it.
Adding 40 rows and 20 columns to the control.
Generating a main file that looks like this:
#include <cvirte.h>
#include <userint.h>
#include "test.h"
static int panelHandle;
int main (int argc, char *argv[])
{
if (InitCVIRTE (0, argv, 0) == 0)
return -1; /* out of memory */
if ((panelHandle = LoadPanel (0, "test.uir", PANEL)) < 0)
return -1;
SetCtrlAttribute (panelHandle, PANEL_TABLE, ATTR_ENABLE_COLUMN_SIZING, 0);
SetCtrlAttribute (panelHandle, PANEL_TABLE, ATTR_ENABLE_ROW_SIZING, 0);
DisplayPanel (panelHandle);
RunUserInterface ();
DiscardPanel (panelHandle);
return 0;
}
Everytime I hover over the top-left corner (the one that selects the entire table), I get that GPE.
Can anyone reproduce this?