I am wondering how to combine files (exe, dll, jpg etc.) into a single standalone executable. Can this be done?And when i open it, it will automatically launch the included files. However The joined files should be fully encrypted
How do I combine multiple files into the one file with a new extension. No need to be compressed. So I avoid Zip or similar solutions. (Actually don't want to add third party solutions into my application.)
I have a folder with several excel files that have a date field, i.e. 08-24-2010-123320564.xls.I want to be able to have some VB scripting that will simply take the files that start with todays date and merge them into one file.
How can I combine all of the output Released files into just a single .exe file? Like for example I have these file extensions: .exe, .pdb, .vshost, vshost.exe, vshost.exe.manifest, and then 2 xml files that have to do with my program.
So once again I am trying to get all of these files into possibly one file. Do you know how when you go into your Windows Program Files folder, there are none of these files. I am basically trying to do the same thing.
This code may be useful to someone. It's code I used to generate the code for this thread:How could i create an animated .gif file from several other .jpg files in c# express
Imports System.IO Imports System.Drawing.Imaging Public Class Form1
How can I combine multiple *.txt files in a specific directory into one txt file in another directory using VB.NET? (And to delete blank lines at the end of the new file)
I know how to do it in vbscript: Const ForReading = 1 Const ForWriting = 2 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objOutputFile = objFSO.CreateTextFile("C:logsimportoutput.txt") [Code] .....
I've made a rudimentary program that combines multiple files into one single file. Currently if I combine two .csv files together the output comes out correctly for what I need, which is a coma delimited file. When I try to combine two .csv files into a .xls file it doesn't format correctly (I get all the data separated by commas, but thrown into one column in the .xls file). For this reason I believe I need to add a delimiter.I'll post my code below.
My randomised image poll generates 6 csv files. Each csv files have the contents of three listboxes
Private Sub SaveButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveButton.Click Using sw As StreamWriter = New StreamWriter ("C:\Users\Riz\Pantfile.csv") For i As Integer = 0 To ListBox1.Items.Count - 1
[code].....
1) how to assign column titles to each column? 2) How do I combine several csv files into an open excel file? I've looked at several things. There are no commas in my csv files. All values in columns.
How do I combine a last name to a first name to create a list of names in a table from a form? I have tried to use the technique of creating a 5 uppercase letter record identifier, but I can't get the name to allow for different length names without truncating.
I was wondering if there is a way to include / 'run' C++ code within VB.net I think I read somewhere about turning the C++ Code into a library and can access it that way, but not 100% sure if I did in fact read that right or if I'm dreaming things up. Basically, I want to design a basic UI, ie just a button or 2, and when the button is clicked I'd like it to use the C++ Code.
how can i get cell text value from excell sheet in visual basic and then after changing its text send it to back excell. when i open excel file i should get the changed value in file.
I am trying to UNION the two queries below without success. Dim ds1 As New DataSet Dim MyConnection1 As New OleDb.OleDbConnection(GetPOWERConnectionString()) [Code] .....
I'v got 3 functions that I'd like to combine into 1. There is only one line in each function that changes. can think of a few ways off the top of my head, but not sure which is "the best", or "proper way" to accomplish this.
Private Function CheckQuads(ByVal QuadNumber As Integer) As Boolean Dim intArray(3) As Integer Dim x As Integer = 0
I need to combine an if/then/else with a try/catch and I can't seem to make it work. Basically I need this:
Try code that might bomb Catch ex As Exception
[code]....
I thought I could check Err.Number once I was out of the Try/Catch block but that doesn't work because apparently Err.Number exists within the Catch block after an exception is caught, but outside of the Catch block Err.Number is zero again. How can I do what im trying to do? Im about to NOT use try/catch and resort to On Error Resume Next (aaahhhh the days when things were simple and just worked)
I have a solution, Winforms, mainly composed from VB.NET projects (Wiforms, Constrols and business classes).
How, I added to it a WPF project, but wrote it in C#. Actually, every time I make a modification in the WPF C# project, I need to (re)build the C#WPF project. Is there a option to make it work like other (VB.NET) projects (accept and "see" the changes without rebuilding the C# project)?
An example:When I reference project "R.VB" in project "M.VB", I add a method "DoTest" in the "R.VB" and use that method in "M.VB" without compile errors.
If I add "DoTest" in the C# WPF Control and try to use it in "M.VB" project, I recieve a compile error "DoTest" is not a member od "R.C#Class".
I have two projects, one written with vb.net and one with c#,I would like to use the vb.net one more as a Class and make the c# project the 'main' one.I have already read that In order to do that I need to compile the vb.net project as a dll and import that dll into the C# project.I am having hard times making it work.Does anyone know how do I import the dll and use the functions that are implemented in the dll?
How do I combine richtextboxes? Currently, I am directly saving rich text to a RTB with ".rtf" and I would like to append the rich text information to that box from another RTB. Something like: RTB.rtf &= newrichbox.rtf do not throw any flags but also does not work. What I am ultimately trying to do is save multiple richtextboxes to a single RTF file. I was trying to do it by combining them all into one RTB and using ".savefile()" or is there a better way? Maybe appending them to the file one RTB at a time?
What I'm doing is generating a report, so I have built generic rich text templates that go into multiple RTBs that will create the form sections and I have left placeholders for the data I am adding, so I do replaces on the placeholders to insert the data. However, there are a couple dozen different possible formats for the report based on user options, so I built each section into its own RTB so I can just write out the relevant sections when it comes time to generate the file.
I'm trying to combine two datasets, each with 1 datatable and each having the same schemas. Datatable 1 would have a list of records. Datatable two may, or may no, have some or all of the records from table 1 plus more records. I would like to remove all the records from table 2 that are present in table 1.
This is what I got so far: For Each table1 As DataTable In ds.Tables For Each row1 As DataRow In ds.Tables(0).Rows ds.Tables(0).PrimaryKey = New DataColumn() {ds.Tables(0).Columns(0)} 'Where 0 is the index of the column that's your key row2 = ds2.Tables(0).Rows.Find(row1("ID")) 'if its found, delete it Next Next
I am trying to figure out a way of combining the below Dim statements into one line and maybe also combining Return dblResult into there. currently it is three lines and I have been told that it is possible but kind of lost of how to do it
I'm trying to combine 2 byte arrays and then create a new byte array that contains the contents of both but running into a problem. The error says 'Source Array was not long enough.' I'm trying to combine HeaderByteArray and bytBuffer into newByteArray. I don't understand what Source Array is not long enough means and how to correct this.[code]...