Program Runs Locally In Vis Web Dev But Not On Server

Sep 10, 2010

I created a program in MS Visual Web Developer 2010. It has a form that simply launches a script that manipulates a database. The project lives in several files and they are all inherited so they see each other and it accesses a MSSQL Express DB on one of our servers.

When I F5-Run the project locally on my PC it works fabulously. When I copy it to a web-enabled (application) folder on the server it executes but almost my very first line of code fails with this error[code]...

View 1 Replies


ADVERTISEMENT

App Runs Fine Locally But CLR Error Over Network?

Apr 3, 2009

I have an application that runs just fine if I execute it from a local drive, however when I deploy the files to a network location and run the file I get a "Common Language Runtime Debugging Serivces - Application has generated an exception that could not be handled process id bla bla bla, OK to terminate, Cancel to debug"

View 3 Replies

How To Connect Locally On Server Machine

Jan 29, 2011

How to connect locally on server machine?

View 1 Replies

Get UNC Works Locally But From Server Returns Error 2250

Jun 1, 2011

<p>I cannot for the life of me figure out why the below code works when I fire it from my localhost but does not work when I publish it. I am unable to remote Debug </p><p>but it seems that I am getting Error 2250... I've tried searching for it but its too damned generic a code?</p><p> </p><p>All I want is the UNC, why is everything in .NEt so damned difficult?

View 6 Replies

HTML Page Shows Up Locally But Not When Published On The Server?

May 16, 2012

I am creating html code as a string (named htmlString) in a Visual Basic .Net program and want to show the created html as a new page

Dim path As String = Server.MapPath("~/tmp/")
Dim strWriter As StreamWriter = New IO.StreamWriter(path & "SomeHtml.html")
strWriter.Write(htmlString)
strWriter.Close()
System.Diagnostics.Process.Start(path & "SomeHtml.html")

This works locally but when published on the server it does not open the html page. (Nothing happens when I click on the button that is supposed to trigger the piece of code to create .html and display it.

View 1 Replies

Threads Not Starting In ASP.Net On Server But Works Fine Locally?

Mar 15, 2012

The code works fine when I run it locally, yet as soon as I have uploaded to our dev server it doesnt run, but also doesnt error.I did some research and found that I should have the thread impersonate the WindowsIdentity, which I have done but still the thread does not work, I also tried increasing the max threads in IIS and still nothing.Im running IIS 7.5 on Windows 2008 R2.The method being executed on a new thread is in a class in the App_Code folder and looks like:

Public Class RosterEmailer
Inherits System.Web.UI.Page
Dim thisID As String
Dim thisName As String

[code]....

View 2 Replies

Application Runs On Citrix Server But Not On Virtual Terminal Server

Sep 3, 2009

An application loaded on a citrix server executes with no problem. When we try to run the same program files on a virtual server, we get silent errors and we do not even see the application window appear. The program runs for a moment in task manager, but then closes down. BTW other .net apps run on the virtual server. Here is the error we see in the event viewer application logs[code]...

View 2 Replies

Printscreen My Screen That Can Be Saved In Gif / Jpeg Format Locally In Program?

Aug 26, 2010

How can I printscreen my screen that can be saved in gif or jpeg format locally in VB.net

View 1 Replies

.net - Live Code Runs In IIS And ASP.NET Web Server But Not IIS Express?

Apr 21, 2011

Having recently installed IIS Express I was hoping that it was going to make life easier for me, but I've run into a problem almost straight away.Consider the following which is representative of some live code:

Public Shared Function GetServiceId() As String
Dim principal As MyCustomAuthentication.Principal.MyPrincipal
principal = CType(Thread.CurrentPrincipal, MyCustomAuthentication.Principal.MyPrincipal)

[code]....

Running the code under the ASP.NET Web Server (Cassini) everything is fine and I can see that Thread.CurrentPrincipal is of type MyCustomAuthentication.Principal.MyPrincipal.Running under IIS Express this same line throws an InvalidCastException and checking the type I find it is now of System.Security.Principal.GenericPrincipal which is confusing as nothing else has changed.I can confirm that MyCustomAuthentication.Principal.MyPrincipal implements IPrincipal and remember this is Live code, it is currently deployed and working.

View 1 Replies

Create A Chat That Runs Off Of Mysql And Not A Server?

Apr 23, 2009

I was wondering if its possible to create a chat that runs off of mysql and not a server?

View 4 Replies

SQL Statement Runs In SQL Server- Not In Visual Studio?

Nov 23, 2010

I'm running Visual Studio 2008 and have been told that I have all rights to create #temp tables. I have done this before, but for some reason my sql in the new application always returns 0 rows.I have the SQL connection string stored in my Application events asFriend sqlConnProducts as StringI create a sql string and pass it to the SQLExecute Function

Private Function SQLExecute(ByVal sSQL As String) As DataTable
Dim rtnTable As New DataTable()
Dim sConn As New SqlConnection(My.Application.sqlConRecvInsp)

[code].....

View 3 Replies

Program Runs In Background?

Jun 9, 2010

I got a problem here. How can I let the program run in background when I click the minimize button on the right up corner?While it is running in background, I also wish there will be a small icon shown in the system tray.

View 3 Replies

Data Is Discarded When Program Runs

Apr 21, 2010

1. When the program is running and if i save the data , it gets saved in the db. But when i close the program and again run it the data gets discarded

2. Say first i have saved the info about person 'A', and then When i Save then info of Person 'B', instead of the the details of B the details of A is getting duplicated[code]...

View 2 Replies

How To Change Program So That It Runs Off Of All Drives

Apr 18, 2010

For some reason, I can only run my program at college where I created it. It runs off of E:/ (usb port) so when I take it home, it won't run as at home, my E:/ is a CD Drive. How can I change my program so that it runs off of all drives?

View 4 Replies

Lightswitch Program Runs On One Machine But Not Other

Nov 10, 2011

I loaded a Lightswitch program on an XP machine and after load all of the updates it runs fine. I tried to load it on another XP machine with all of the updates loaded and it looks like it installs and it shows up under programs but it looks like it starts to run but then nothing happens, there are no new processes running.

View 1 Replies

Program Closes But Still Runs In Processes?

Apr 8, 2011

I have made a program that has an intro screen, moving onto an activity select screen which acts as the main interface to get around the program. After creating the program and installing it on my computer, when I close the program from the activity select screen, using the "X" at the top right corner, the program continues to run under "processes" in the task manager.If I close the program from the intro screen though, it will close everything, including the processes. Is there anyway I can get the same to happen with the game select screen? I can make it work by putting my own "End" button on the form, but id prefer to be able to do it with forms own close button.

View 5 Replies

Program Runs Faster In Background?

Jun 28, 2010

this is really bothering me, my program seems to run faster whenever I click on some other window so the form doesn't have focus. What is going on and how can I fix this?

Here's the troublesome section:
ListView1.Items.Clear()
'loop through the updates

[code].....

View 2 Replies

Run A Program That Runs Fine On XP OS But It Won't Run On Vista?

Jul 17, 2009

I'm trying to run a program that runs fine on XP OS, but it won't run on Vista. I've tried to install msinet.ocx in the system32 folder, but it never works.I've tried to register with regsvr32 but it gives error I've tried to register with regsvr32 with cmd as administrator it's register the Activex Control but it gives error " Unexpected error "

View 1 Replies

VS 2005 Long A Program Runs?

Jul 22, 2010

I would like to know if there is a way to see how long a program runs. I have one that takes a very long time to run, which is not the problem. I start it and go to bed or leave for the day. When I come back it has finished. I do know it takes hours. Is there a way to find out how long it does take to run give or take a couple of minutes?

View 3 Replies

Change Mouse Cursor When Program Runs

May 23, 2011

I want the cursor to change when moving over pictures. Can it be done prorammatically? The solutions offered in the forum do not function. Changing the cursor in the property window of a picture is refused.

View 6 Replies

Create A Launch Sequence That Runs The Program?

Apr 29, 2011

I've been looking for a way to create a launch sequence that runs the program while simultaneously minimizing the IDE to the tray.I've been unable to find even a discussion on such.

View 5 Replies

Program Runs But Can Not Open Pdf Because The Published Folder?

Jul 15, 2010

I made a project that open pdf files in the debug folder. But when i am trying to publish it program runs but can not open pdf because the published folder doesn't contains the pdf files. How can i publish my project with all the pdf and swf files?

View 12 Replies

Program Runs Slowly After About An Hour And A Half Or So

Jun 29, 2011

I created a program that has 11 threads running simultaneously.Each thread runs a stopwatch and measures the amount of time that passes between the Start and Stop.There is no code between the start and stop, so most often, the result is 0 milliseconds.I noticed that INITIALLY, after a few minutes, the program would slow and the output to the RichTextBox would become disjointed.So, every two minutes, I have a timer execute and end the threads and restart them all.This seemed to help, however, after about an hour and a half, the program becomes more sluggish, evident in the stopwatches recording more instances over 0 milliseconds.Does this have to do with 'garbage collection' and is that even possible in VB .NET (I thought C only had that), or perhaps memory management?

View 1 Replies

Program That Runs In Background And Monitors USB Ports

Oct 10, 2011

I am looking to write a program that runs in the background that monitors the USB ports on a PC. If a specific device gets unplugged I want a message box to come up saying so. Is this possible. I am guessing I would need to query the usb devices for their ID and then write a simple If then statement, however I do not know how to get the IDs of the usb devices.

View 7 Replies

Runs Program And Seems To Skip Whole Register Key Section

Mar 21, 2012

I've created my program, its all fine and dandy, only problem is i want it to start when windows does.i have read a few threads and adapted some codes.. i have this [code] now it wont let me debug, presumably because of admin rights. although when i navigate to myprogram's .exe and run as admin it runs the program and seems to skip the the whole reg key section .

View 6 Replies

Saving Checkbox State Between Program Runs?

Mar 16, 2011

Iam looking for a way to save a checkbox' state between runs. So that if a checkbox is checked and the program is the closed down, it will remain checked when the program starts up again and vice versa. I've found som deferent guides around the web but i cant seem to get it to work..

Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Dim ExtApp As Integer

[code].....

View 5 Replies

VS 2008 - First Instance Of Program Runs Forever

Aug 9, 2009

I wrote a simple auto login script to update my IP address on a certain website. Something really strange is happening now though. The first time I run the program, nothing happens. However, the second time I run the program, that instance will work fine. Then I look in task manager, and the first program is still running, using a whopping 50% of my CPU. I believe VB may be blocking off memory or something, as when two instances are running each is using around 25% of CPU. Then after the second one successfully completes, the first starts to use 50% again.

Here's my code below:
Option Strict Off
Public Class frmTest
Private Sub frmTest_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code] .....

View 9 Replies

Save Variables To Be Recalled Next Time The Program Runs?

Nov 9, 2009

I am creating a very simple game for a project. There is opportunity for bonus marks, and one thing I would like to do is be able to "save" the game. The only thing I need to do is save about 4 variables to be recalled the next time the program runs.

What is the best way to do this?

I have searched Google, and there are ways to link the program to an Access database, but that seams a little extreme. I tried seeing if you can make an XML file to hold them, but I can't really find any good information.

View 8 Replies

Save/restore A Form And Controls Between Program Runs?

Jul 7, 2010

I have a complex form to allow the user to configure my app.

What's the best way to save the form state & reload when the program next runs.

I mean text he has entered in list boxes, the selected item of combo/list/radio, whether a checkbox is cheeked, etc

View 6 Replies

When Remove 'Not' In 'Loop While' Statement Program Runs Indefinitely

May 11, 2009

[code] The problem in my case, this is not working with this code. All I need are random numbers outside the above boundaries.Please note when I remove 'Not' in 'Loop While' statement, the programme runs indefinitely!!

View 11 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved