VS 2008 Zipping Up Project
Sep 10, 2009
Whenever I zip my project files up I cannot open them after they are zipped. My files all work perfectly before i zip it, then when I zip them up, I can't open them from the zipped folder. I get this error message, "The project file or web has been moved, renamed or is not on your computer." Not sure what is happening here. I am zipping the entire subdirectory that my project is in.
View 1 Replies
ADVERTISEMENT
Aug 12, 2011
I'd like to email my app folder, setup and exe (the 3 files VBnet creates) to someone -- tried to zip it but it won't go.
View 4 Replies
Mar 11, 2011
I want to compress and decompress folder and subfolder in vb.net in windows application.i am using vs2008.
View 10 Replies
Apr 15, 2012
I want to make a application that uploads a whole folder, but I can't because I don't know how to upload a folder in VB.NET.I want to be able to make my application to zip the folder, then when it needs to get the file again, it can download the zip file and unzip it. Also a zip files would use less space on my FTP server.
View 1 Replies
Apr 22, 2011
i am using sharpziplib library to compress files but, i don't know how to do it for folders.
i tried to do so, but can't do it. how to compress folders with icsharpziplib.
View 1 Replies
May 5, 2010
For reasons that are beyond my control, I have three Projects. Projects A and B reference project C. Project A references project B so that it can open a large form in project B. I now need to open that large form from project C, but VB won't allow me to add a reference from C to B because that would create a circular dependency. I found a way around it, though. I created a Timer in A, and when I opened C from A, I passed in that timer. When the user performs a certain action, I enable the Timer from A, and this causes C to open B for me.
View 2 Replies
Feb 24, 2011
With VB.NET, I'm able to completely unzip a file - this is easy. I'm able to manipulate the resulting folders - again, easy. However, for some reason, I cannot figure out how to zip and entire folder. I can zip specific files, but I need a function that will allow me to input a path and then it will zip that entire folder, including the subdirectories
View 1 Replies
Jan 27, 2011
Need code for the following
The VB script will have 3 parameters
1.zip filename
2.extraction filename
3.rejection file name
We need to do the following
1)It should first zip the extraction file and rejection file into zipfile name as in argument 1
2)Check the file zippping is completed
3) deleted the original files(extraction file and rejection file)
[code]...
View 1 Replies
Jul 12, 2012
I can zip files to a memory stick and transfer to another computer without any difficuly but how do you zip an entire VB project so that it can be put on another computer, unzipped and used in Visual Studio? The part that I seem to getting confused with are the folders bin, My Project and obj.
View 11 Replies
Sep 30, 2010
I created an application in which the user has to specify the number of rows and collumns. Once these are specified, a Table Layout Panel creates these number of cells with each cell having a button and a Text Box inside it. On the double click of a button, the user can change the background image of the button, specify the sound for it and similarly fill in the text box too. The sound specified should be played on single button click. Once done for all the cells, it would look something like this.[code]...
View 3 Replies
Nov 15, 2010
i was developing Voice Chat Application in visual Basic .NET 2008 i try a lot methods to make installer for it :
1- i add Project Setup Project for my Project for Visual Studio 2008 Deploy & setup Type Projects and make it with output option and detect dependices
2- i try make it with Setup Factory 8.2.1
3- i try with MSI Factory 2.0
4 i try with Setup Factory 6.0
and after making installer copying it to my test virtual Machine or my friend lap and install it i get this error when try to run my application :
[Code]...
View 3 Replies
Jul 14, 2010
I'm trying to zip a file that is stored on SQL Server as a blob image field and when downloading the zip file it says the file is corrupted.. or the file will open but contains some crazy characters. I've tried WinRAR and 7zip and no luck. I checked out [URL] and tried to kind of combine the browser attachment code and the memorystream/byte array code and no luck.
Here is my code snippet:
Try
BinData = DirectCast(dt.Rows(0)("ImageField"), Byte())
Catch ex As Exception
End Try
Dim blen As Integer = BinData.Length
[Code] .....
View 12 Replies
Nov 28, 2011
How do i get multiple icons in a project for use with shortcuts OUTSIDE the project..
View 7 Replies
Jun 28, 2009
Is there a way that you can export a file from one project directly into another project?
For example, in one project i have a file called authInvalid.vb and i need to export it into another project?
View 4 Replies
Jun 16, 2009
Is there a tool to convert a VB.NET 2005 project to a C# 2008 project. I am trying to convert our project to VS 2008 and mostly port all the vb.NET code in some projects to C# 3.0/3.5.
View 6 Replies
Apr 26, 2009
i'm doing a program, and i'm working with a guy (he's kinda like a teacher) and he's teaching me tiered coding, UI, BLL and DAL.i've been taught to have the UI in one project, and the BLL in another, but they're in the same solution. pretty much i don't know how to declare things from the BLL project in the UI project.
View 1 Replies
Jul 9, 2011
I emptied the recently-viewed projects from the registry but now the project which I'm working on does not appear there even though I've opened it many times. How do I get the project to appear in recently-viewed projects?
View 5 Replies
Mar 22, 2010
I am really new to Visual Studio and VB and I am having trouble closing a single form:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Me.Close()
End Sub
When I use Me.close() associated with this button it closes the entire project and not just the single form can anyone.
View 2 Replies
Dec 20, 2010
Public Class ExtendedDateTimePicker Inherits DateTimePicker
View 5 Replies
May 6, 2009
I have a project that I have created, it something like a contact database.It is complete with its own sql server database, and controls and forms.I kinda of understand that I can include this project into another project.This is the tricky part,Can I include my contact project into another project and add more items to the database and forms in a new project?What I'm after is like using classes.My contact database would be like the base class, and the new project would be adding more features to that project.
View 10 Replies
Dec 5, 2010
I have put a ton of effort into my new project, and I have saved the coding and designer part. I never did publish it, and when I came back to open it later to work on it, I can't seem to get to the screen that allows you to move items, and edit the looks of the project. I have to files that say RSEB.Designer.vb and RSEB.Vb - So how do I open the screen that allows me to edit the damn project?
View 20 Replies
Jul 28, 2011
create a COM dll in Visual Basic. [URL]I now want to use this dll in a C++ project. I used OLE/COM Viewer to create an .idl file as is described in the second half this tutorial.[URL]I compiled the .idl with the midl compiler and included the .h file that was created in my c++ project.Here is my Visual Basic Code
<ComClass(MyComClass.ClassId, MyComClass.InterfaceId, MyComClass.EventsId)> _
Public Class MyComClass
#Region "COM GUIDs"
[code]....
I receive the following errors when I compile my c++ project
error LNK2001: unresolved external symbol _CLSID_MyComClass
error LNK2001: unresolved external symbol IID_MyComClass
View 1 Replies
Dec 24, 2011
I'm using vb.net 2008. can I rename my project?
View 3 Replies
Mar 17, 2010
I am trying to convert an old VB 6 project to VS 2008, but it is giving me the following error:
Quote:
Upgrade failed: Exception occurred: Could not load referenced component:TABCTL32.OCX (1.1.0)You need to install this component before you upgrade the project.It is recommended you install VB6.0, with all referenced components, and ensure the application compiles and runs before upgrading.I don't have VB6.0, so how do I work around this?
The files I am trying to convert are here:
www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=65071&lngWId=1
View 6 Replies
Aug 12, 2008
I know that wininet allows for FTP functions and whatnot, but I'm unable to add the .dll to my project. I've downloaded the .dll, and when I go to add it as a reference in my project I get this error message: "Please make sure that the file is still accessible, and that it is a valid assembly or COM component"
I know that I can use my.system.network to upload and download files from/to a server, but I want to be able to get all files and directories on a server, something I cannot do with that. Is there another way to do this that I haven't found?
View 4 Replies
Oct 20, 2008
i was wondering if anyone knows how to get a VB 2008 project to run a .exe from withinside it???say i wanted a muti installer...with the installer packages embedded inside it....is it possible to call tghe .exe by clicking a button?
View 14 Replies
Feb 6, 2010
How can I make my project.exe in visual basic 2008 and how to load an image into PictureBox by clicking a CommanButton.?
View 8 Replies
Dec 24, 2009
Have been doing well moving a VB6 project to VB 2008.Here's another question.I am making an onscreen keyboard.I have my qwerty buttons handled by the same Event, as recommended to me by someone in these forums. It works great, and it was easy to set up.In my VB6 project, when I designed the "CAPS" button, all I had to do was this:
[Code]...
Can someone take a second and explain to me how this is accomplished in VB 2008? Do I have to physically type every button into an array and then do something like I did in VB6?
View 5 Replies
May 31, 2010
I have a VB 2008 project XYZ. It is in an XYZ folder. I want to keep it, but I also want a copy of it which I will call ABC which will be in the ABC folder. How do I do this? Just moving files to a new folder does not work. I have found a few places to make changes like the assembly name, but there seem to be many places and I haven't found them all. I found some old posts for earlier versions of VB but they are not applicable.
View 3 Replies
Apr 26, 2010
I use Visual Basic 2008 to build my Application. How do I keep the previous one and upgrade the same project. I couldn't find Save as facility like before. Anything wrong with my VB 2008 setting? Any other way to do this so that I still keep my previous version. My intention is to have certain project with different capability so that I can give a choice to user. And also I can give different way of output to chose.
View 6 Replies