问题描述
这是场景.
1)我有一台装有Visual Studio .Net的计算机(A)和一台没有Studio但已安装.NET框架的计算机(B).
2)在计算机A 上:我开发了一种表格,可以将数据从 Db1.table1 传输到 Db2.Table2 .对其进行了编译,并具有可执行文件EXE1.
3)此 EXE1 在计算机B 上按预期运行正常.
我的问题是:
1)如果要(小的)更改数据库中字段名称更改的代码,我需要返回到 ComputerA ,更改代码,编译并制作 EXE 并将其部署在 ComputerB 上.
我如何避免将代码带到计算机A 以便Visual Studio更新它.可以使用.VB文件代码或其他文件自行更改计算机B 上的字段名称,并可以使用VBC(命令行编译器)生成 EXE 在计算机B 本身上.
请为我的问题提供可能的解决方案
谢谢,
Kumar
Hi,
This is the scenario.
1) I have a computer (A) that has Visual Studio .Net and a Computer(B) that doesn''t have Studio but had .NET framework installed.
2) On Computer A : I developed a form which transfer data from Db1.table1 to Db2.Table2. Compiled it and had executable EXE1.
3) This EXE1 is running fine on Computer B as expected.
My problem is:
1) If want to (small)change the code for a Field name change in the database, i need to come back to ComputerA,change the code,compile and make EXE and deploy it on ComputerB.
How can i avoid to bring the code to Computer A for visual studio to update it. Can''t i make use of .VB file code or other files to change the field name on Computer B it self and make use of VBC (Command line compiler) to generate EXE on Computer B itself.
Please advice the possible solutions for my problem
Thanks,
Kumar
推荐答案
这篇关于从Visual Studio到命令行编程的Vb.Net代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!