程序描述:从 XML 读取和显示数据操作系统:Windows 7 IDE:Microsoft Visual Studio 2010 Express
我的主源文件(BABSEA CLE Library.cpp)中有这个代码段:
int currentBook;
#include "Editor.h"
#include "checkoutline.h"
#include "Form1.h"
using namespace BABSEACLELibrary;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
//more code blablabla
我尝试从(非主)表单(checkoutline.h)访问“currentBook”,这是一个简单的表单模板,其中添加了以下内容:
private: System::Void checkoutline_Load(System::Object^ sender, System::EventArgs^ e) {
currentBook=0;}
虽然它在主表单文件(Form1.h)中完美运行
有任何想法吗?