我怎样才能将此C ++ .net更改为vb.net或vb2008 [英] how can i change this c++ .net to vb.net or vb2008

查看:72
本文介绍了我怎样才能将此C ++ .net更改为vb.net或vb2008的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

int CApp20Dlg :: Read_LB(int lb_id,CStringArray * pOutput)
{
CListBox * pLB =(CListBox *)Get_Control(lb_id);
int i,count = pLB-> GetCount();
静态字符项[LB_READBUFFER_SIZE];
无符号长pid;
HANDLE进程;
-> RemoveAll();
GetWindowThreadProcessId(pLB-> m_hWnd,& pid);
进程= OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE | PROCESS_QUERY_INFORMATION) br/> for(i = 0; i< count; i ++){
pr_item = pLB-> GetItemDataPtr(i); /> pOutput-> Add((CString)item);
}

CloseHandle(process);
返回计数;
}
我要将此代码更改为vb2008,但不知道如何执行

int CApp20Dlg::Read_LB(int lb_id, CStringArray* pOutput)
{
     CListBox* pLB = (CListBox*) Get_Control(lb_id);
     int i, count = pLB->GetCount();
     static char item[LB_READBUFFER_SIZE];
     unsigned long pid;
     HANDLE process;
     LPVOID     pr_item;

     pOutput->RemoveAll();
     GetWindowThreadProcessId(pLB->m_hWnd, &pid);
     process=OpenProcess(PROCESS_VM_OPERATION|PROCESS_VM_READ|PROCESS_VM_WRITE|PROCESS_QUERY_INFORMATION, FALSE, pid);
     
     for(i=0; i<count; i++) {
          pr_item = pLB->GetItemDataPtr(i);
          ReadProcessMemory(process, pr_item, item, LB_READBUFFER_SIZE, NULL);
          pOutput->Add((CString) item);
     }
     
     CloseHandle(process);
     return count;
}
i want to change this code over to vb2008 but dont know how to do it 

推荐答案

您尝试过其中一种方法吗?
Have you tried either of these?


这篇关于我怎样才能将此C ++ .net更改为vb.net或vb2008的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆