摘要:
tvm_getimagelist = (tv_first + 8),
tvm_setimagelist = (tv_first + 9),
tvm_getnextitem = (tv_first + 10),
tvm_selectitem = (tv_first + 11),
tvm_getitema = (tv_first + 12),
tvm_getitemw = (......
摘要:
imports system.diagnostics
namespace vbcity
public module modfunctions
public sub executeapplication(pstrapplicationname as string)
dim udtprocess as process = new process
udtprocess.start......
用vb.net开发apiviewer(2)
viewer.vb剩余代码
private sub lstitem_selectedindexchanged(byval sender as system.object, byval e as system.eventargs) handles lstitem.selectedindexchanged
if lstitem.items.count > 0 then
select case cmboption.text
case api.cmb_types
if not lstitem.selecteditem is nothing then
if optcsharp.checked then
txtoutput.text = replace(api.types.getdatacsharp(lstitem.selecteditem()), api.apiscope, iif(optpublic.checked, api.apipubliccsharp, api.apiprivatecsharp))
else
txtoutput.text = replace(api.types.getdata(lstitem.selecteditem()), api.apiscope, iif(optpublic.checked, api.apipublic, api.apiprivate))
end if
end if
case api.cmb_constants
if not lstitem.selecteditem is nothing then
if optcsharp.checked then
txtoutput.text = replace(api.constants.getdatacsharp(lstitem.selecteditem()), api.apiscope, iif(optpublic.checked, api.apipubliccsharp, api.apiprivatecsharp))
else
txtoutput.text = replace(api.constants.getdata(lstitem.selecteditem()), api.apiscope, iif(optpublic.checked, api.apipublic, api.apiprivate))
end if
end if
case api.cmb_declares
&...
下一页 摘要:
摘自:http://discuss.develop.com/
測試過,挺好的!
public class progressstatusbar : system.windows.forms.statusbar
{
public progressstatusbar()
{
this.sizinggrip = false;
this.showpanels = true;
......