VS 2005 .NET Exe Files On Server?
Mar 9, 2010
I have VB.net console application which is working fine locally. It should start once I double click it.I created a setup project (using Setup and Deployment wizard) and publish it on the server, it does not work. It just flashes and then goes away.Would there be any dependencies I'm overlooking?
I included during my setup-
Primary output from 'myapp'
Source files from 'myapp'
Debug Symbols from 'myapp'
I even tried to add the exe (which works on my machine separately on the server, but does the same.
View 3 Replies
ADVERTISEMENT
Aug 7, 2010
I have stored an excel file within an SQL Server Table having the corresponding column data type as varbinary (MAX) through a VB .NET windows application form. how can I retrieve and open the stored excel file for manipulation?
View 2 Replies
Mar 26, 2009
I use VB.net to create a Windows Service . its job is to connect a server ( for exemple \10.10.10.10ox named P: and collect files .but the problem is the result of mapping the server ( Dir P: = "" ) return nothing i don't find my files !!!Do i have to use the ftp in windows service ?? because when i use a windows form apllication there is no problems and I find all the files
View 3 Replies
Jul 18, 2011
Is it possible to store excel, word, pdf, .rar .zip files to a column in a table of a SQL Server 2005 DB.And also open the fie with excel, word, acrobat reader, etc????My other sollution would be to store the file on a location on a server and only sory the filename and location in my db and then open them with "Process.Start("filename")".My main problem with solution 2 is this:Lets say I install the programm on a pc called "manager". When I use the savefiledialog and I am on the manager pc the string C:/myfiles/test.xls will be stored
View 1 Replies
Aug 12, 2011
I've inherited a .NET app to support / enhance which reads in a couple of files of high hundreds of thousands of rows, and one of millions of row.The original developer left me code like :-
For Each ModelListRow As String In ModelListDataArray
If ModelListRow.Trim.Length = 0 Or ModelListRow.Contains(",") = False Then
GoTo SKIP_ROW
[code].....
and it takes an age (well, nearly half an hour) to import these files.
View 2 Replies
Mar 4, 2011
May I ask a question to you all.I have vb.net project that generate sales report from SQL Server Database.I changed SQL Server 2005 Express to SQL Server 2005 Standard Edition.
After that my program can't run properly and every time I got Time Out Expire message.
That program work properly with SQL Server 2005 Express.May I request suggestion how to fix this.
View 1 Replies
May 13, 2011
i have 2 application clinet/server the server broadcast media files to client i used tcp/ip protocol the server code is work good but i have a problem in client code i need ineed someone to correct the code .iwll show where the error is in the code note: i call the class in the main form dim a as recive in the starter of the main form class to be gloable .
[Code]...
View 4 Replies
Jun 4, 2008
I need to read the email from the mail server that is in my intranet from my application server.
View 9 Replies
Dec 7, 2010
How can I write a connection string? I has four different computer that can be connect via ethernet.How can I maintain a inserting data if to computer insert on same table at a single time..??
View 1 Replies
May 11, 2012
Scenario: I want to develop an application.The application should be able to connect to my remote server and download data to the local disk , while downloading it should check for new files and only download the new ones simultaneously creating the required(new) folders.
Problem: I have no idea how to compare the files in the server with the ones in the local disk.How to download only the new files from the server to the local disk?
What am thinking?: I want to sync the files in the local machine with the ones in the server. I am planning to use rsync for syncing but i have no idea how to use it with ASP.NET.
View 1 Replies
Mar 9, 2012
I am using vs 2010 web..I want to know that:how to upload only modified files/file to server instead of upload full project.if a made a small change in a aspx file and want to see how it look like live . then vs 2010 upload each time all pages/files to server and it take time.
View 1 Replies
Dec 14, 2010
I'm doing a project where we are re-creating a very old system.The client wants the same base functionality and some improvements.One of the things I'm currently working on is the note-system. These are used as flags of some sort, but are also used as a comment field for some products or client profiles.In the old system you could write the text and save it like you would get in a .txt file. They want the new one to be able to do word formatting such as:
Different font sizes (Only some parts of the text)
Different font colours (Only some parts of the text)
Underlining of words
Bolding
Italics
Tab-spaces
Those are the specs they want. What I need to know is the following:
1) How do I do that?
2) Currently they store all these files on the server as text files and the database have paths that refers to each file. I want to be able to save a text file with that formatting to the HDD of the server like in the old system.
3) If possible I would like to save that text to the database with the formatting.
View 1 Replies
Feb 29, 2012
I am tring to make the below application work with SQL Server 2005 Database Currently it works for test.mdb, which is in the same folder with the application. How shoud I modify the MapPath to work with SQL Server.
[Code]...
View 1 Replies
Feb 19, 2010
the remote server returned an error: (503) server not available m getting this error...wen i m trying to extract email id from a webpage...
View 2 Replies
Mar 13, 2009
I am using memorystream to get and store images into sqlserver 2005 table image field. This process is working and I am able to display image in picture box. I need to be able to store PDF files into the same field and be able to display in a picture box.
View 2 Replies
Apr 14, 2009
I have many applications that create TLB files which I guess are so that vb2005 can comunicate with the DLL files. Now what I would like to do is have all my TLB files in one folder and have my application point to that folder to use them.The problem I am having is that my EXE will not run unless all the TLB files are in the same folder as the EXE. I do not want this. I want to put some code into my file that sais that the tlb files it needs are located in say: [code] and still have it work. again right now they all have to be in the same folder which is really bugging me.
View 3 Replies
Apr 14, 2010
i have installed visual studio 2005 in my computer i want to create a sql server 2005 file i saw a sql server 2005 option in my installed components i want to know how to create a sql server 2005 from my visual studio 2005 it is possible or not.
View 1 Replies
Dec 30, 2011
I am using the following code to copy files from one folder to another...
Public Shared Sub CopyFlashScriptFile(ByVal SourceDirectory As String, ByVal DestinationDirectory As String)
Try
[Code]....
Is there anyway I can programmatically stop SQL Server and copy the files, then start the server again?
View 3 Replies
Jun 21, 2010
i wrote a software which would work perfectly fine on vb.net with connection string: [code] but if i try and run it on a pc with sql server 2005 installed it fails to run what changes do i need to do to make it run
View 5 Replies
Nov 22, 2009
I had made a project in VB.NET 2005 with SQL SERVER 2005 used as database. Now i want to make a setup of this project but i am unable to integrate sqldatabase and .net framework in this setup project. Is there any way to do this. Because it is assumed that the client does not have .NET Framework installed nor he has SQL Server on his system and the worst condition would be he does not have even internet connection from where these two setups can be downloaded if we give the condition for downloading these programs from the net if the client does not have these programs installed on his machine.
View 2 Replies
Nov 15, 2011
basically i just want client to say "C: emp" ENTER
then, server must reply with all its files in c: emp
View 1 Replies
May 19, 2010
i need to download all files fron FTP server folder. is it possible to download the folder from FTPserver? if not is it possible to download all files from folder because i have a requirement that i need to download all the files from that folder in FTP server. even i don't know the files name. So is there any sample code for this? i have xml files in that FTP server folder.
View 2 Replies
Aug 26, 2011
create a script that will download folders and subfolders from a FTP server to a local server.
example:
server = 192.168.1.1
user: user
password: 12345
[Code].....
View 1 Replies
Jul 30, 2009
I am using the web client to download a file. Which works ok. However, now I have to download many and the number of files to download will change everyday. I am not sure how I can get the web client to know which files have been downloaded or not? I was thinking of using a for loop to download each file. But I will never know how many there are to download? The web client could download the same file twice?
[Code]...
View 5 Replies
Oct 28, 2010
I am new to using VB.NET, I've come from developing using MS Access.
I have started a project that will load csv/txt files into SQL Server, I have a form that has a browse for file and this will then display the csv/txt file name in a text box once chosen. How is it posible to use an ADO connection send the csv/txt file into a table within my database.
Can anyone give me little help to get the basics of creating code to import the csv/txt files.
View 1 Replies
Sep 1, 2010
This function worked well a few hours ago and now i only get ".." returned. I have multiple files on the ftp server.
View 9 Replies
Jan 23, 2012
I have some files in a folder in one folder one server and am trying to move them in another folder in a different server. How can I achieve that, I have trying to do the code below but it doesnt work.[code]
View 5 Replies
Nov 10, 2011
I havethe following function which works fine.
Private Sub UnzipFolder()
Dim query As String
Dim cmd As New SqlCommand
[Code].....
View 6 Replies
Jun 1, 2012
I wanted to know how I would be able to upload files to my server from my WinForms .exe application. I tried: My.Computer.Network.UploadFile(myFile, myServer) but I get this error 'The remote server returned an error: (404) Not Found.' Anyone know another way of uploading files to my server from a .exe?
View 1 Replies
Jun 11, 2009
I have an app that uploads files to server using the webclient.I'd like to display a progressbar while the file upload is in progress.How would I go about achieving this?
View 2 Replies