473,386 Members | 1,630 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Compile and create exe

Dear Experts,

I've completed my console application and now wants to compile the
application and an executable file to be run at another location. However,
I've tried compiling that program in the command prompt with the following
command :

vbc Module1.vb /out:OEAutomation.exe /t:exe

I received a lot of error messages.
-------------------------------------------------------------------------------------------
D:\OEAutomation\OEAutomation\Module1.vb(3) : error BC30466: Namespace or
type 'Mail' for the Imports 'System.Web.Mail' cannot be

Imports System.Web.Mail
~~~~~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(8) : error BC30002: Type 'SmtpMail'
is not defined.

Public smtp As SmtpMail
~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(9) : error BC30002: Type
'MailMessage' is not defined.

Public msgOELog As MailMessage = New MailMessage()
~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(23) : error BC30002: Type 'clsFTP'
is not defined.

Dim ff As clsFTP
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(24) : error BC30002: Type 'SmtpMail'
is not defined.

Dim smtpErrorToIT As SmtpMail
~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(25) : error BC30002: Type
'MailMessage' is not defined.

Dim msgErrorMailToIT As MailMessage = New MailMessage()
~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(27) : error BC30451: Name 'Today' is
not declared.

dtCurrentDate = Today
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(28) : error BC30451: Name 'Weekday'
is not declared.

If Weekday(dtCurrentDate) = 2 Then
~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(35) : error BC30451: Name 'Month' is
not declared.

strOEYesterdayLogFilename = "eoe" & Month(dtPreviousDate) &
Day(dtPreviousDate) & ".txt"
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(35) : error BC30451: Name 'Day' is
not declared.

strOEYesterdayLogFilename = "eoe" & Month(dtPreviousDate) &
Day(dtPreviousDate) & ".txt"
~~~
D:\OEAutomation\OEAutomation\Module1.vb(36) : error BC30451: Name 'Month' is
not declared.

strOETodayLogFilename = "eoe" & Month(dtCurrentDate) &
Day(dtCurrentDate) & ".txt"
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(36) : error BC30451: Name 'Day' is
not declared.

strOETodayLogFilename = "eoe" & Month(dtCurrentDate) &
Day(dtCurrentDate) & ".txt"
~~~
D:\OEAutomation\OEAutomation\Module1.vb(49) : error BC30451: Name 'vbLf' is
not declared.

msgOELog.Body = "Dear All," & vbLf & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(49) : error BC30451: Name 'vbLf' is
not declared.

msgOELog.Body = "Dear All," & vbLf & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(57) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Started")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(61) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Started")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(68) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Old Log Rename Successfully")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(72) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Yesterday Old Log Rename
Successfully")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(76) : error BC30002: Type 'clsFTP'
is not defined.

ff = New clsFTP()
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(119) : error BC30451: Name 'vbCrLf'
is not declared.

objOutputLogFile.WriteLine("Specific Error=" & ex.Message +
vbCrLf)
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(131) : error BC30451: Name 'Hour' is
not declared.

If Hour(Now()) = 9 Then
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(131) : error BC30451: Name 'Now' is
not declared.

If Hour(Now()) = 9 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(149) : error BC30451: Name 'Hour' is
not declared.

If Hour(Now()) = 15 Then
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(149) : error BC30451: Name 'Now' is
not declared.

If Hour(Now()) = 15 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(183) : error BC30451: Name 'vbLf' is
not declared.

msgOELog.Body = msgOELog.Body & dtDate & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(198) : error BC30451: Name 'Replace'
is not declared.

arrFileContent(lngCounter) = Replace(arrFileContent(lngCounter),
strPipe, "|")
~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(207) : error BC30451: Name 'Len' is
not declared.

If Len(strTempString) = 0 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(215) : error BC30451: Name 'Trim' is
not declared.

strTempString = Trim(strTempString)
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(216) : error BC30451: Name 'InStr'
is not declared.

If InStr(1, strTempString, "TT") <> 0 Then
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(217) : error BC30451: Name 'InStr'
is not declared.

ElseIf InStr(1, strTempString, "NOPAD") <> 0 Then
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(218) : error BC30451: Name 'InStr'
is not declared.

ElseIf InStr(1, strTempString, "Item") <> 0 Then
~~~~~
----------------------------------------------------------------------------------------------
And I've no idea how to perform an IDE compilation. I tried to copy the exe
from the /bin directory to another location to run but received error message
stating that

The dynamic link library mscoree.dll could not be found in the specified path

I:\OEAutomationlog;.;C:\WINNT\System32;C:\WINNT\Sy stem;C:\WINNT;C:\WINNT\System32;C:\WINNT\System32\ Wbem

Can anybody please help me or guide me on this?

Many thanks in advance.
Nov 22 '05 #1
4 1970

"Seok Bee" <se*****@yahoo.com> wrote in message
news:3D**********************************@microsof t.com...
Namespace or type 'Mail' for the Imports 'System.Web.Mail' cannot be
You need to reference System.Web.dll if you are going to you System.Web.Mail
classes

vbc Module1.vb /out:OEAutomation.exe /t:exe /r:System.Web.dll
And I've no idea how to perform an IDE compilation. I tried to copy the
exe
from the /bin directory to another location to run but received error
message
stating that
What IDE are you using? VS.NET 2003? Use the Build menu.
The dynamic link library mscoree.dll could not be found in the specified
path


That error sounds like the one you get when you try to execute a .NET
application on a computer that doesn't have .NET installed.

Download and installed the redistrubatable package on the computer you want
to execute your app on.
http://www.microsoft.com/downloads/d...displaylang=en

Greg
Nov 22 '05 #2
Thanks a lot Greg for your fast reply.
I am using Visual Studio .NET 2002 with Service Pack 1.
I think the machine that I wants the program to be run has not been
installed with any .NET Framework component.
Also do I need to put in all the references that I have Import in the
programs when I perform the compilation?
Because I received error messages again after I include the System.Web.dll.
I have a class created in the program. How do I include the class when I
perform the compilation as the error message is showing that the class that I
declare is not defined.
"Seok Bee" wrote:
Dear Experts,

I've completed my console application and now wants to compile the
application and an executable file to be run at another location. However,
I've tried compiling that program in the command prompt with the following
command :

vbc Module1.vb /out:OEAutomation.exe /t:exe

I received a lot of error messages.
-------------------------------------------------------------------------------------------
D:\OEAutomation\OEAutomation\Module1.vb(3) : error BC30466: Namespace or
type 'Mail' for the Imports 'System.Web.Mail' cannot be

Imports System.Web.Mail
~~~~~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(8) : error BC30002: Type 'SmtpMail'
is not defined.

Public smtp As SmtpMail
~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(9) : error BC30002: Type
'MailMessage' is not defined.

Public msgOELog As MailMessage = New MailMessage()
~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(23) : error BC30002: Type 'clsFTP'
is not defined.

Dim ff As clsFTP
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(24) : error BC30002: Type 'SmtpMail'
is not defined.

Dim smtpErrorToIT As SmtpMail
~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(25) : error BC30002: Type
'MailMessage' is not defined.

Dim msgErrorMailToIT As MailMessage = New MailMessage()
~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(27) : error BC30451: Name 'Today' is
not declared.

dtCurrentDate = Today
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(28) : error BC30451: Name 'Weekday'
is not declared.

If Weekday(dtCurrentDate) = 2 Then
~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(35) : error BC30451: Name 'Month' is
not declared.

strOEYesterdayLogFilename = "eoe" & Month(dtPreviousDate) &
Day(dtPreviousDate) & ".txt"
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(35) : error BC30451: Name 'Day' is
not declared.

strOEYesterdayLogFilename = "eoe" & Month(dtPreviousDate) &
Day(dtPreviousDate) & ".txt"
~~~
D:\OEAutomation\OEAutomation\Module1.vb(36) : error BC30451: Name 'Month' is
not declared.

strOETodayLogFilename = "eoe" & Month(dtCurrentDate) &
Day(dtCurrentDate) & ".txt"
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(36) : error BC30451: Name 'Day' is
not declared.

strOETodayLogFilename = "eoe" & Month(dtCurrentDate) &
Day(dtCurrentDate) & ".txt"
~~~
D:\OEAutomation\OEAutomation\Module1.vb(49) : error BC30451: Name 'vbLf' is
not declared.

msgOELog.Body = "Dear All," & vbLf & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(49) : error BC30451: Name 'vbLf' is
not declared.

msgOELog.Body = "Dear All," & vbLf & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(57) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Started")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(61) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Started")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(68) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Old Log Rename Successfully")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(72) : error BC30451: Name 'Now' is
not declared.

objOutputLogFile.WriteLine(Now() & " Yesterday Old Log Rename
Successfully")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(76) : error BC30002: Type 'clsFTP'
is not defined.

ff = New clsFTP()
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(119) : error BC30451: Name 'vbCrLf'
is not declared.

objOutputLogFile.WriteLine("Specific Error=" & ex.Message +
vbCrLf)
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(131) : error BC30451: Name 'Hour' is
not declared.

If Hour(Now()) = 9 Then
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(131) : error BC30451: Name 'Now' is
not declared.

If Hour(Now()) = 9 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(149) : error BC30451: Name 'Hour' is
not declared.

If Hour(Now()) = 15 Then
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(149) : error BC30451: Name 'Now' is
not declared.

If Hour(Now()) = 15 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(183) : error BC30451: Name 'vbLf' is
not declared.

msgOELog.Body = msgOELog.Body & dtDate & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(198) : error BC30451: Name 'Replace'
is not declared.

arrFileContent(lngCounter) = Replace(arrFileContent(lngCounter),
strPipe, "|")
~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(207) : error BC30451: Name 'Len' is
not declared.

If Len(strTempString) = 0 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(215) : error BC30451: Name 'Trim' is
not declared.

strTempString = Trim(strTempString)
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(216) : error BC30451: Name 'InStr'
is not declared.

If InStr(1, strTempString, "TT") <> 0 Then
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(217) : error BC30451: Name 'InStr'
is not declared.

ElseIf InStr(1, strTempString, "NOPAD") <> 0 Then
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(218) : error BC30451: Name 'InStr'
is not declared.

ElseIf InStr(1, strTempString, "Item") <> 0 Then
~~~~~
----------------------------------------------------------------------------------------------
And I've no idea how to perform an IDE compilation. I tried to copy the exe
from the /bin directory to another location to run but received error message
stating that

The dynamic link library mscoree.dll could not be found in the specified path

I:\OEAutomationlog;.;C:\WINNT\System32;C:\WINNT\Sy stem;C:\WINNT;C:\WINNT\System32;C:\WINNT\System32\ Wbem

Can anybody please help me or guide me on this?

Many thanks in advance.

Nov 22 '05 #3

I don't believe VS.NET 2002 ever had a service pack, did it? You maybe
thinking of the .NET framework itself. The 1.0 framework is up to service
pack 3, and the 1.1 framework is up to service pack 1. At least I think
that is correct.

I would not bother trying to compile from the command prompt. If you have
the IDE you should take advantage of it!

Do you get any errors when you build your app inside of the IDE? If so,
what errors do you see in the Build Ouput window?

If not, then just build it (optionally changing your Active Solution
Configuraiton from Debug to Release mode) and copy the .exe from the bin
folder to the other machine.

References and Imports are NOT the same!

In order to use System.Web.Mail you must first have a reference to that
..dll. You do that inside the IDE by right-clicking References in Solution
Explorer and choosing Add Reference.

The Imports statement you add at the top of you class is optional.

Imports System.Web.Mail

This just allows you to not have to fully qualify the namespace. It just
saves you some typing.

Instead of having to type:
Dim ms As New System.Web.Mail.MailMessage

You can just type
Dim ms As New MailMessage

You can get away with the shorter name because you added the Imports
statement. Hope that is clear.

You must install .NET redistributable on any machine you want to run .NET
apps on.

Greg

"Seok Bee" <se*****@yahoo.com> wrote in message
news:4D**********************************@microsof t.com...
Thanks a lot Greg for your fast reply.
I am using Visual Studio .NET 2002 with Service Pack 1.
I think the machine that I wants the program to be run has not been
installed with any .NET Framework component.
Also do I need to put in all the references that I have Import in the
programs when I perform the compilation?
Because I received error messages again after I include the
System.Web.dll.
I have a class created in the program. How do I include the class when I
perform the compilation as the error message is showing that the class
that I
declare is not defined.
"Seok Bee" wrote:
Dear Experts,

I've completed my console application and now wants to compile the
application and an executable file to be run at another location.
However,
I've tried compiling that program in the command prompt with the
following
command :

vbc Module1.vb /out:OEAutomation.exe /t:exe

I received a lot of error messages.
-------------------------------------------------------------------------------------------
D:\OEAutomation\OEAutomation\Module1.vb(3) : error BC30466: Namespace or
type 'Mail' for the Imports 'System.Web.Mail' cannot be

Imports System.Web.Mail
~~~~~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(8) : error BC30002: Type
'SmtpMail'
is not defined.

Public smtp As SmtpMail
~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(9) : error BC30002: Type
'MailMessage' is not defined.

Public msgOELog As MailMessage = New MailMessage()
~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(23) : error BC30002: Type
'clsFTP'
is not defined.

Dim ff As clsFTP
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(24) : error BC30002: Type
'SmtpMail'
is not defined.

Dim smtpErrorToIT As SmtpMail
~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(25) : error BC30002: Type
'MailMessage' is not defined.

Dim msgErrorMailToIT As MailMessage = New MailMessage()
~~~~~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(27) : error BC30451: Name 'Today'
is
not declared.

dtCurrentDate = Today
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(28) : error BC30451: Name
'Weekday'
is not declared.

If Weekday(dtCurrentDate) = 2 Then
~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(35) : error BC30451: Name 'Month'
is
not declared.

strOEYesterdayLogFilename = "eoe" & Month(dtPreviousDate) &
Day(dtPreviousDate) & ".txt"
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(35) : error BC30451: Name 'Day'
is
not declared.

strOEYesterdayLogFilename = "eoe" & Month(dtPreviousDate) &
Day(dtPreviousDate) & ".txt"
~~~
D:\OEAutomation\OEAutomation\Module1.vb(36) : error BC30451: Name 'Month'
is
not declared.

strOETodayLogFilename = "eoe" & Month(dtCurrentDate) &
Day(dtCurrentDate) & ".txt"
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(36) : error BC30451: Name 'Day'
is
not declared.

strOETodayLogFilename = "eoe" & Month(dtCurrentDate) &
Day(dtCurrentDate) & ".txt"
~~~
D:\OEAutomation\OEAutomation\Module1.vb(49) : error BC30451: Name 'vbLf'
is
not declared.

msgOELog.Body = "Dear All," & vbLf & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(49) : error BC30451: Name 'vbLf'
is
not declared.

msgOELog.Body = "Dear All," & vbLf & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(57) : error BC30451: Name 'Now'
is
not declared.

objOutputLogFile.WriteLine(Now() & " Started")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(61) : error BC30451: Name 'Now'
is
not declared.

objOutputLogFile.WriteLine(Now() & " Started")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(68) : error BC30451: Name 'Now'
is
not declared.

objOutputLogFile.WriteLine(Now() & " Old Log Rename
Successfully")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(72) : error BC30451: Name 'Now'
is
not declared.

objOutputLogFile.WriteLine(Now() & " Yesterday Old Log Rename
Successfully")
~~~
D:\OEAutomation\OEAutomation\Module1.vb(76) : error BC30002: Type
'clsFTP'
is not defined.

ff = New clsFTP()
~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(119) : error BC30451: Name
'vbCrLf'
is not declared.

objOutputLogFile.WriteLine("Specific Error=" & ex.Message +
vbCrLf)

~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(131) : error BC30451: Name 'Hour'
is
not declared.

If Hour(Now()) = 9 Then
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(131) : error BC30451: Name 'Now'
is
not declared.

If Hour(Now()) = 9 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(149) : error BC30451: Name 'Hour'
is
not declared.

If Hour(Now()) = 15 Then
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(149) : error BC30451: Name 'Now'
is
not declared.

If Hour(Now()) = 15 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(183) : error BC30451: Name 'vbLf'
is
not declared.

msgOELog.Body = msgOELog.Body & dtDate & vbLf
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(198) : error BC30451: Name
'Replace'
is not declared.

arrFileContent(lngCounter) =
Replace(arrFileContent(lngCounter),
strPipe, "|")
~~~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(207) : error BC30451: Name 'Len'
is
not declared.

If Len(strTempString) = 0 Then
~~~
D:\OEAutomation\OEAutomation\Module1.vb(215) : error BC30451: Name 'Trim'
is
not declared.

strTempString = Trim(strTempString)
~~~~
D:\OEAutomation\OEAutomation\Module1.vb(216) : error BC30451: Name
'InStr'
is not declared.

If InStr(1, strTempString, "TT") <> 0 Then
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(217) : error BC30451: Name
'InStr'
is not declared.

ElseIf InStr(1, strTempString, "NOPAD") <> 0 Then
~~~~~
D:\OEAutomation\OEAutomation\Module1.vb(218) : error BC30451: Name
'InStr'
is not declared.

ElseIf InStr(1, strTempString, "Item") <> 0 Then
~~~~~
----------------------------------------------------------------------------------------------
And I've no idea how to perform an IDE compilation. I tried to copy the
exe
from the /bin directory to another location to run but received error
message
stating that

The dynamic link library mscoree.dll could not be found in the specified
path

I:\OEAutomationlog;.;C:\WINNT\System32;C:\WINNT\Sy stem;C:\WINNT;C:\WINNT\System32;C:\WINNT\System32\ Wbem

Can anybody please help me or guide me on this?

Many thanks in advance.

Nov 22 '05 #4
"Seok Bee" <se*****@yahoo.com> wrote in message
news:4D**********************************@microsof t.com...
Thanks a lot Greg for your fast reply.
I am using Visual Studio .NET 2002 with Service Pack 1.


Microsoft® Visual Studio® .NET 2002 Service Pack 1

http://www.microsoft.com/downloads/d...displaylang=en

Well I'll be a monkey's uncle. :^) I haven't used VS 2002 in years.

Greg
Nov 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Ben Ingram | last post by:
Hi all, I am writing a template matrix class in which the template parameters are the number of rows and number of columns. There are a number of reasons why this is an appropriate tradeoff for...
10
by: Chris LaJoie | last post by:
Our company has been developing a program in C# for some time now, and we haven't had any problems with it, but just last night something cropped up that has me, and everyone else, stumped. I...
1
by: Raterus | last post by:
Hi, Is there a way I can see what commands VS.net is using to compile my asp.net projects? I'm sure its using the vbc/csc programs, but I'd love to see the command-line options it is using. ...
27
by: Rene | last post by:
I keep getting the following error every time I compile the solution under VS 2005: ---------------- Error 5 Unable to copy file "obj\Debug\xyz.dll" to "bin\Debug\xyz.dll". The process...
2
by: MLH | last post by:
I did these 4 steps to create a topic file 1 Open a new file in a word processor or text editor that can handle rich text format. 2 Write your individual topics, separating each topic with a...
3
by: sachinvyas | last post by:
Hi, I have following schema saved in new.xsd <?xml version="1.0" encoding="utf-8"?> <xs:schema targetNamespace="http://www.smpte-ra.org/schemas/429.7/2006/CPL"...
9
by: ThunderMusic | last post by:
Hi, I'd like to create a compile time error in my class... maybe there's a way already built in in the framework so I can achieve what I want... I have 2 constructors in my class. One of them...
109
by: zaidalin79 | last post by:
I have a java class that goes for another week or so, and I am going to fail if I can't figure out this simple program. I can't get anything to compile to at least get a few points... Here are the...
16
by: desktop | last post by:
I have read that using templates makes types know at compile time and using inheritance the types are first decided at runtime. The use of pointers and casts also indicates that the types will...
1
by: =?Utf-8?B?T2xkQnV0U3RpbGxMZWFybmluZw==?= | last post by:
I am trying to teach myself how to compile my application at the command line with the csc.exe. I found a good article which steps you through the process, but I have some questions, which I hope...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.