由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - VB .net help
相关主题
c#有没有第三方地免费解释器?ASP.Net比ASP倒底好多少?
How to compile multiple file using vbc?about visual studio.net upgrade
麻烦大家帮忙看看:cannot find dependencyTried Visual Studio 2005 Beta
error of compiling C# in visual studion 2013 win 7 (转载)VB.net 问题求助
I am back. :)说到netadvantage
c# for linux请教有关header file的几个问题
WaitOne() and WaitOne(int, bool)Which one is faster
how to import C# .net DLL in VC6?xamarin有没有搞头?
相关话题的讨论汇总
话题: vb话题: net话题: file话题: vbc话题: compile
进入DotNet版参与讨论
1 (共1页)
b******s
发帖数: 12
1
I have a VB .net project. I tries to use vbc.exe to compile all the vb files
instead of using the visual studio .net.
I created one utility file say "a.vb", which have a function "f1()" that I
will call in other vb source file say "b.vb". But there is no conecpt of the
include as C/C++ has. So when I try to compile b.vb using:
vbc b.vb
It complains the function 'f()" can not be found. If it is in C, I will use
#include "a.h" in b file and it will know where the definition is.
Does anybody have
y***e
发帖数: 39
2
you can try
vbc /out:test.exe a.vb b.vb
or
vbc /out:test.exe *.vb
or if you have visual studio solution file use
devenv *.sln /build
or use Nant

【在 b******s 的大作中提到】
: I have a VB .net project. I tries to use vbc.exe to compile all the vb files
: instead of using the visual studio .net.
: I created one utility file say "a.vb", which have a function "f1()" that I
: will call in other vb source file say "b.vb". But there is no conecpt of the
: include as C/C++ has. So when I try to compile b.vb using:
: vbc b.vb
: It complains the function 'f()" can not be found. If it is in C, I will use
: #include "a.h" in b file and it will know where the definition is.
: Does anybody have

1 (共1页)
进入DotNet版参与讨论
相关主题
xamarin有没有搞头?I am back. :)
A potentially dangerous Request.Form value was detected from the clientc# for linux
请教怎样compile .msi file and .net projectWaitOne() and WaitOne(int, bool)
VB & C# compiler open-sourced!how to import C# .net DLL in VC6?
c#有没有第三方地免费解释器?ASP.Net比ASP倒底好多少?
How to compile multiple file using vbc?about visual studio.net upgrade
麻烦大家帮忙看看:cannot find dependencyTried Visual Studio 2005 Beta
error of compiling C# in visual studion 2013 win 7 (转载)VB.net 问题求助
相关话题的讨论汇总
话题: vb话题: net话题: file话题: vbc话题: compile