IDE :: Keep A Very Strict And Regulated Development environment
Sep 13, 2011
I work for a medical devices company and as such, we need to keep a very strict and regulated development environment.Since we are using MS Visual Studio as our main SW development tool we need it to comply with FDA regulations.So, is Visual Studio (and its compiler) FDA approved?
View 1 Replies
ADVERTISEMENT
Mar 1, 2010
how to run a Windows application within the VB.NET development environment. How can I 'build' or save my VB.net application, so I and others can run this application without runing the Visudal Studio?
View 2 Replies
Sep 17, 2010
I'm from an AS/400 (iSeries) background and have no idea about how a team of programmers work within the .Net environment. Lets say a company purchases a new button control. Now, in that company they'll have 5 or 10 developers working with that new control. Its my understanding that even if the control is in the GAC, it must still be copied locally to work on at design-time. My question is, what is locally? Does each developer have a copy on their own PC or is it held centrally on a server?
View 3 Replies
Nov 23, 2009
I have inherited a large VB.NET solution that was created in VS 2003. I am trying to update it to VS 2008 to maintain it. I no longer have access to an install of VS 2003.
The solution contains 15 projects that are console applications and 1 that is a Website application. The website application refers to some assemblies in the other console projects.
When I try to open the solution in VS 2008 all the console applications open but as it tried to open the Web application (or website? -- not sure) I see the dialog "Trying to open http://dmedibiz/dotcom.vbproj". It is unsuccessful in doing so. I don't have a website named http://dmedibiz on my development machine.
I tried changing the name of the website in DotCom.vbproj.webinfo, but that does not have any effect in VS 2008. When I go so far as to change the Hosts file so that the local machine resolves "dmedibiz" to the proper folder on my local machine, I keep getting prompted for a login and cannot access the folder even using the administrator login. I have tried adjusting the security on the Folder and in IIS Manager and even in the Frontpage Extensions, but nothing works.
So, what can I do to open this web project along with the other projects whose classes it references? Is there a way to change the website reference in the upgraded application? I actually do not want Frontpage Extensions in the site, but there was some reference to that also in the erro messages about installing them to "fix" the problem.
Here is the error I am receiving...
Unable to open the Web site '[URL]. Could not find a Web server at 'http://dmedibiz'. check to make sure that the Web server name is valid ...'
Can anyone tell me how to change the website location reference? Or must I remove the Web project from the solution and create a new Website and then copy in the files that need to be worked on?
View 1 Replies
May 12, 2009
Why would database drivers work in the development environment of VB.Net and not once the project is built and installed on the same pc? I've tried the MS ODBC Oracle driver. I've tried various ODBC datasources. All work when I am in the development environment but none once I build and install. No matter whether the configuration is Debug or Release. This is the only project having this problem. I have other apps (VB.Net) that access the same database (Oracle 9.2) with no problem.The environment variables are the same during both types of runs. The error messages vary depending upon the driver being used.
View 1 Replies
May 21, 2009
In VS2005, I noticed that when you go from the code window to the form window, the form immediately appears, but then redraws again, and takes about 4-5 seconds to come back. Is there any way around this annoyance? Has it been fixed in VS2008? In general, has anyone noticed any speed improvements in the development environment between VS2005 and VS2008?
View 9 Replies
Jun 19, 2010
Well I've finally decided to upgrade some of my vb6 applications. Anyway I have two forms that are very similar one is customers one is vehicles. One of them is working on form load and one of them isn't. The one that isn't working I've traced the point it stops down to where there is a green line left of the code on the left bar of the development environment. This green line doesn't exist on the form that works. What the green line in this photo means? [URL].
Bigger Picture [URL]. I found a page that says the green simply means the code was saved but it's only on the form that stops working right after the execution of the sql statement. For some reason while stepping through the code it returns to the show command that was called to originally open the form right before the form opens but it skips everything with the green line next to it. I went and disabled tracking and it went away.
View 3 Replies
Feb 16, 2011
I have just started using VB.net, and am currently using VB2010 Express. Previously in VB6, I used the MSCOMM control for communicating via the serial port.
1) What is the minimum development environment required for RS232 communication? I assume VB2010 Express will not be sufficient.
2) What control or class should I use?
View 3 Replies
Feb 5, 2010
In case you are interested and have not spotted this.>>
http://gdk.thegamecreators.com/ee Professional Game Development Environment
View 1 Replies
Jul 21, 2011
I have an app that I'm debugging and I need to pause it by clicking on a "pause" button in the development environment. I don't want to stop it programmatically, just manually to check what it is doing. I know this should be simple but I can't find a pause button anywhere on the toolbar.
View 4 Replies
Oct 17, 2009
How can I get round this error: Option Strict On disallows implicit conversions from
[Code]...
View 4 Replies
Dec 15, 2009
I have VB6 Dll which I am referencing in vb.net ,I am calling the following function in it. It working fine in developemnt environment but not in deployement environment.
Error Method not found: 'Boolean MyUtils._MyUtils.LoadMyObjectRecords(ADODB.Stream ByRef, System.Array ByRef)'.
View 4 Replies
Mar 28, 2010
I have to take over a project written in vb.net, which contains more than 400k lines of code written in option strict off mode. I want to build it under option strict on first before I do anything else -- which maybe converting it into C#. I found there's thousands of lines of code raises compilation error, mostly are about implicit type casts. Is there any tool would help to make it compile under option strict on mode if I don't want to correct every single line manually? Because it's really painful to add CStr/CInt invocation into every line of Code myself.
View 3 Replies
Sep 7, 2010
I turned Option Strict On and i get an error on all the ".Cells" lines saying option strict on disallows late binding.
a = 1
b = 3
c = 2
d = 1
With oSheet
[CODE]..................
View 4 Replies
Jun 30, 2011
[Code]...
I really prefer to keep Option Strict On. the proper way to do this?
View 1 Replies
Apr 13, 2011
I have inherited a VB.NET application that I need to compile so I can run dorkumentation on it. I first received "Option Strict On disallows implicit conversion from x to y" errors, so I turned off the Option Strict option in the Project file.
So why do I still fail with the same error message?
View 2 Replies
Nov 25, 2010
Dim frm As mshtml.HTMLFormElement
Dim sel As mshtml.HTMLSelectElement
Dim hi As mshtml.IHTMLElementCollection
Dim inp As mshtml.HTMLInputElement
[code].....
Looks to me that childnodes object has a more specific type. But what? Not ihtmlcollection. The type support some item interface.
View 3 Replies
Dec 7, 2009
Title says it all really, should I have it off unless I'm having an error, or simply have it on all the time?
View 10 Replies
Jun 28, 2010
what do you thinkg about comment below? original article url is also suggested to read.I didnt get why my code will be faster if i use it on. anyone has good knowledge about it?
Although Visual Basic .NET allows you to perform implicit type conversions and late binding, you should avoid these practices. Implicit type conversions and late binding may lead to severe performance problems, runtime errors, code that is difficult to read and maintain,and sub-standard programming practices.Many VB.NET professional programmers believe that leaving OPTION STRICT OFF by default was perhaps Microsoft's worst decision in the VB.NET implementation. Use OPTION STRICT ON.
View 13 Replies
Feb 19, 2009
What is Environment.FailFast? How is it useful?
View 4 Replies
Jan 9, 2009
We have a couple of applications at work that need a reference to the license server set in the User Variables under the Enviroment Variables on the windows xp client machines(system properties, Advanced, Enviroment Variables). The problem is that both applications needs a reference to the same variable name and you can't have two with the same name. What i intend to do is to create a simple windows application with a button for each application that deletes the variable item present, adds a new variable item with the value needed for that application to be able to run and then run the application itself. This is just a temporary fix until we get a more permanent solution. The 'GetEnvironmentVariable' class in vb is not able to add or delete a item, maybe the WIN32 API could do the job.
View 2 Replies
Feb 17, 2012
I was trying to learn how to do openGL within a VB .NET environment and it seems that the Tao framework or OpenTK is recommended with OpenTK having a higher recommendation so that is what I chose to try using. Since I am brand new to this, I am trying to just draw a simple box, triangle, or anything really so that I can understand it all before making more complex things. I have been unsuccessful at this so far so I will list in order what I have done so far and hopefully someone here can help me correct it or provide a new example just so I can draw a simple shape.
1) I installed OpenTK using opentk-2010-10-06.exe
2) In a new project I added the references to OpenTK.dll and OpenTK.Compatibility.dll
3) I added the control (opentk.glcontrol.dll)
4) I added the actual control to my form.Using some examples online I added the rest:
5) I wrote my references in:
Imports OpenTK
Imports OpenTK.GLControl
Imports OpenTK.Platform
[code]....
The above results in no display?
View 2 Replies
Jul 15, 2009
i could make a 3d environment in VB.net which i could in the future make into a game environment or could i only do this with a language such as C++?
View 2 Replies
Jun 24, 2009
Outside of the environment after running the setup program I can tell that the setup is failing miserably. The all important file "cakecreationdb.accdb" cannot be found. I have been beating my brains out against a brick wall on this one.
View 1 Replies
May 8, 2010
I wanted to know if its possible to use VB.Net to create a USER Variable in the Environment Variables of the Operating System.
View 2 Replies
Jan 25, 2012
I have an old programme that was written with 'option strict off' I have been steadily working through it mainly sorting out casting issues but have come up against some that I dont understand.for instance I have a checkbox called tickbox
dim Tickbox as new checkbox
later in the code
dim blah as boolean = Me.Tickbox.CheckState
but option strict insists i cast it as a boolean
dim blah as boolean = CBool(Me.Tickbox.CheckState)
surely the checkbox.checkstate is Booleean?
View 6 Replies
Jun 30, 2009
Do you use 'strict off' option, 'explicit off'? Or may be 'strict custom' and some other options like 'Implicit type. Object assumed', 'Late binding', 'Implicit conversion'?
View 8 Replies
Oct 21, 2011
How to test for DataGridViewCell.Value with Option Strict On?
If DataGridViewCell.Value = "some value" then
Gives the error:
Option Strict On disallows operands of type Object for operator '='. Use the 'Is' operator to test for object identity.
EDIT:
The Solution is:
If DataGridViewCell.Value.ToString = "some value" then
View 1 Replies
May 26, 2012
I'm facing a trick issue with LINQ. I generate the above code:[code..]
Everything is running well if I turn off Option Explicit. When I turn it on, compiler is showing me a meessage: Expression is of type 'Object', which is not a collection type. Referencing to lResult variable.
View 1 Replies
Jun 14, 2011
If a field called X in a datarow called R is an int32 and Y is an int32 how can I make this statement work:
r!x += y
with option strict on.
Error 8 Option Strict On prohibits operands of type Object for operator '+'.
View 8 Replies