Get .exe File Combined With .dll Files?
Jun 16, 2010
Okay I downloaded ILmerge hoping to get my .exe file combined with my .dll files but when installing ilmerge I am not sure what to further do from there as there were no instructions anywhere of my knowing on what to do after installation. All I want to know is how to use it after installing it. (Using VB 2010) framework 4.0
View 2 Replies
ADVERTISEMENT
Aug 4, 2011
I am working on an existing vb#.net 2008 windows form application that has a large number of project files in one solution. This solution can be executed many ways depending upon what the startup project is. However there is one project file that is generally the main 'startup project'. This application also has no setup and deployment currently.
What I am trying to do is to determine what exes, dll's, config files are needed to be combined together so I can deploy them? Is there certain directory paths I can use to determine what files I need? Is there some kind of a way I can test the combined files to determine what files work together so I can deploy them?
View 5 Replies
Jun 22, 2010
I am sitting with a situation that I have to combined (3 years) for 26 site of 29000 database files where there is 1 table in each data base called RECDATA, I need to combined all that data Into one database file called RECDATA.
For example there is a database called DB1 with a REDATA table inside it, and then DB2 with a RECDATA table inside it, DB3 with a RECDATA table inside it est. So I need to put all the Recdata into 1 Database file, or to copy all the RECDATA from all the database files to 1 RECDATA they all have the same columns All I need is to get all that data into 1 RECDATA table.
The program where this database comes from is a voicerecording system creating a new database every day. There is 1 database just for indexing (to view the recordings) and then the daily database is where the recording lies in, that Colum is called RECFILE. I will give you a example of the 2 database.
View 1 Replies
Sep 9, 2010
If I have the following a OrElse b and a is True then clearly b is never evaluated. But if I add an Or, then what?a OrElse b Or c
Does/should c get evaluated? And what if I put in some brackets?Apologies if this is basic. Of course I can test for the answer myself but I can't find this question answered here or elsewhere. Lots of questions dealing with Or versus OrElse but nothing dealing with Or with OrElse
View 4 Replies
Dec 30, 2009
I have a DGV to filter and i need the outcome of this as a filter string which i can use to filter my BindingSource:
Try
Using connection As New SqlConnection("Data Source=.SQLEXPRESS;AttachDbFilename=D:ProjectMWMachineWaleMachineWaleDatabaseMW.mdf;Integrated Security=True;User Instance=True")
[Code]...
View 4 Replies
May 25, 2012
Code to generate 10 integers randomly between 1 and 50, and still be able to tell which is maximum and minimum
View 7 Replies
Oct 27, 2009
I am filtering a Datagridview with combined help of 4 textboxes and 4 comboboxes each dedicated to a field in DB. All i know about this process is i can combine two or more filters but how do i check at a given time, whether which of these (cb & tb) have been used already to perform the filter already and then collect all the instances and perform the collective filter.
View 12 Replies
Jan 28, 2012
Forgive me for being a twit! I am thought I was combining csv file with excel file in different worksheets. I have used the copy and paste functions to combine my csv file with excel file. But..the csv file seems to copy over the login data I have stored in Sheet 1. Can anyone spot why? I thought I'd finished....just a few more tweaks away.
[Code]...
View 2 Replies
Oct 26, 2011
I've got a database like this (Below)
What kind of SQL Query do I need to show all those tables combined inside one table?
View 5 Replies
Jun 13, 2011
I have a Datagridview cell with some text in. I'd like to make just 1 word of this text into a link that will open a website but keep the remaining words as normal.
View 1 Replies
Oct 29, 2010
OK I am working on a windows service that monitors specific directories and checks to see if a file is changed. If a file is changed, it is attached to an email and sent to an admin.
The way I solve the problem...
I create a FileInfo object to do the following:
-I check to see if the file has an extension that is allowed to be attached
-I check to see if the file is under a max size to be attached
I create an Attachment object to do the following:
-attach the file to an email
I then send the email. The problem with this is when I edit the file after it is successfully attached the first time, I CANNOT save changes to that file. I get an error message saying that it is being used and cannot change it. My solution to this problem is to call the "dispose()" method of the attachment class. When i do this, I can edit the file all I want to and the first attachment works but after that the "dispose()" method always throws an exception and the file is never attached to the email when the file is edited again. Why is this happening?
View 3 Replies
Aug 15, 2011
Asking for little guidance again... For my custom control, I grouped some properties in some class. Then in the main control code, I use:
[Code]...
View 7 Replies
Aug 9, 2011
I have a number of text boxs that gather data and put it in a combined string in a rich text box that displays all of the collected data. Some of the text boxes require data pasted from other sources however when that data is then copied from the rich text box to the clipboard through a routine, it loses its formatting. home to maintain the original formating?
[Code]...
View 4 Replies
Sep 30, 2010
I am currently working on file carving techniques and found that outlook has to be original and have its own files in a file (file system) going on. You guessed it the wonderful PST file. right direction on opening PST files without outlook if possible.
View 2 Replies
Dec 10, 2009
I know this is out there and probably illogical but I was wondering if it was possible to take multiple picture files and compact them into one file.... and then retrieve them from the program later? Way to combine any amount of image files into one file
Module Module1
Sub combine()
Dim img1 As New Bitmap("i1.jpg")
[CODE]...
View 6 Replies
Feb 23, 2012
How do i make a code that unzips files and then move those files into another zip file?
View 2 Replies
Dec 26, 2009
I am trying to retrieve file details from files in the Program Files folder. I receive an error while trying to retrieve file details.
Dim sFileName As String = ("%ProgramFiles%Windows DefenderMSASCui.exe")
Dim Info As FileVersionInfo
Info = FileVersionInfo.GetVersionInfo(sFileName)
Msgbox(Info.ProductName.ToString())
I receive file not found error at 3rd line. But if I change the path from "%ProgramFiles%Windows DefenderMSASCui.exe" to "c:Program FilesWindows DefenderMSASCui.exe" it works fine.
What should I do if I want to retrieve file details from the path which includes a "%" character?
View 2 Replies
Dec 11, 2011
I wrote a program to download and play AVI files the files are large in size and long time wise. I have the files playing as they are being downloaded but i can't see how long the file is or seek reliably. i was reading that the AVI headers are in the last 512kb of the AVI file *why would't they put it at the start* lol so my question is is there a way to download the last 512Kb of the file i'm downloading. i have the Bytes Read and Length of the file while its downlaoding i'm just not sure where to go from there, or how to do it atleast. If i had the length in time of the Avi file i could set the trackbar to be able to seek properly. or if someone has an idea how i could get the time of the video by using fps and some math i could prob do it that way too but idk how i would tell how i can find how many kb are in the fps i'm sure it changes so think that way is't going to be reliable. how to get the last 512kb would be the best option not sure if it can be done even.
View 4 Replies
Aug 18, 2011
I'm trying to copy multiple excel source files into one excel file. My current code is working only for 3 source files..If more than 3 files are there, it doesn't copy the data but creates blank work sheet in the output excel file. Lets say I have a source folder with 5 excel files. Each workbook contains one worksheet with data. It copies upto 3 worksheets along with data into output excel file.
Lets say excel1 contains A as work sheet, excel2 contains B as work sheet ,excel3 contains C as work sheet ,excel4 contains D as work sheet ,excel5 contains E as work sheet .Now my output excel file should look like..OutputExcel with A, B, C, D, E along with respective data.But my current code is giving output as A,B,C worksheets along with respective data but its creating blank sheet1,sheet2 in place of D & E.
SSIS Script Task Vb.Net Code:
Public
Sub Main()
Dim filePath
As
String =
[code].....
View 1 Replies
Feb 8, 2012
I want to create a file removal which revieve directory files to delete from a text file..[code]
View 2 Replies
Feb 9, 2009
I am writing a backup program that zips files. Using some sample code I have the following that creates a zip file. Problem is it does not get any subdirectories or files. Where am i going wrong?
Dim azFileNames() As String = Directory.GetFiles(SourceFolder)
Dim objCrc32 As New Crc32()
Dim zipStream As ZipOutputStream
[CODE]...
Alternativley, there is another component to the zipping dll that I could probably bypass the above altogether. It is: FZ.CreateZip(DestFile, SourceFolder, True, "", "") Where DestFile is (Output stream as system.io.stream). I'm trying to read all the files, directories, sub dir and files, etc from a specific location, let's say 'My Documents' into Destfile in which the FZ.CreateZip zips the file. FZ is FastZip which is from icsharpcode.net. They have c# examples, but that's greek to me. I'm trying to just learn VB!
View 6 Replies
Mar 27, 2009
I've got an app which uses a background worker to copy files. It works fine but some files are quite large and it "appears" as though the app isn't doing anything. Is there an alternative to the File.Copy method of copying files so I can report on the progress of individual file copies, like the percentage complete?
View 19 Replies
Jun 2, 2009
Looking for an idea of where the best place to keep files for a program. I use them frequently and they interact with the program directly. I want to place them in a place where they won't be easy to find if someone is just cruising thru the directories. Any ideas?
View 7 Replies
Mar 22, 2011
im used to C programming.
Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveAsToolStripMenuItem.Click
timedate.Stop()[code]......
The problem is that if I save a file I get "myfile.GDL" if I overwrite that I get a new file "myfile.GDL.GDL" ect.the other problem being that the filtering in the windows save/open dialog wont show .GDL files unless I select "all files".
View 6 Replies
Feb 24, 2009
How do I get the name of the last file of a set of files with similar set of names? I have sets of files with the similar names beginning with the same characters such as: D1A2-1.jpg, D1A2-2.jpg, D1A2-3.jpg, and D1A2-4.jpg. The set keeps changing (by adding new files of the same set up to it). I want to get the name of the current last file, for example in the set above it should be D1A2-4.jpg. How can I do this in VB2005?
View 2 Replies
May 8, 2010
I am trying to find a way to allow my users to choose the directory to save files into, THe file name is automatically generated as it has a naming convention and i am able to pre program a location to save to but i d like to be able to allow my users to decide themselves which directory they want to save the files to and to have the ability to choose which directory to save to
[Code]...
View 2 Replies
Dec 10, 2010
I'm trying to store all my files into one file. I have quote huge file but the file stops at 194,000 KB and it doesn't save beyond that but the problem I've built says that the file has been saved. I would like to know if there is a way to go beyond this limit? And for the file to just keep getting bigger.
View 3 Replies
Oct 21, 2009
i would like to ask how can i combine 2 .exe files into 1 .exe file. for example,
1) a.exe
2) b.exe
combine into ab.exe
a.exe must install first, after that b.exe will continue.
View 13 Replies
Jun 21, 2010
I have used Resource Hacker to extract all the files from an .exe so I could translate the menus right (translating in the program shows me wrong characters). Now I want to compile these files into an .exe file.How can I do that?
View 2 Replies
Mar 18, 2010
I have a file called "Interop.InventorThumbnailViewLib.dll" for which I'm trying to register with regsvr32. I get the following error.
C:dllInterop.InventorThumbnailViewLib.dll was loaded, but the DllRegisterServer entry point was not found. This file can not be registered.
View 6 Replies