VS 2008 Create A Single .exe File?

Oct 29, 2009

i have developed some applications using VB2008 but my biggest problem so far is how to create a single setup.exe file instead of having 3 files.. My applications do not depend on anything from my computer.. just using .NET FRAMEWORK 3.5 and objects from windows. Is there a program somewere to gather all three files into one?

View 6 Replies


ADVERTISEMENT

Create A CustomControls In A Single DLL File

Aug 31, 2010

I'm trying to figure out how to create a single .dll file in VB.NET that will contain multiple custom controls. Basically I have a .dll / single VB.NET program that will include a custom control for a Button, a Label, and a Text Box. I've figured out how to make a single custom control, but I can't seem to get it to work if I have more than one in there. It just keeps using the one I had in there originally.

View 2 Replies

Create A Single Setup File?

Mar 7, 2009

i have created a windows application and i have created a windows service i have created two separate setup files .

but i want to create a single setup file which will install the two applications (first the windows form and next windows service)

View 2 Replies

How To Create A Single PDF File From Several PDF Files

May 12, 2010

A VB.NET program needs to create a single PDF file from several PDF files.Is there a way to do this with a VB.NET or C# program?If not, is there a free add-on product that .NET can use to do it?

View 3 Replies

Create A Single Location For One File To Be Shared Among Three Different Applications?

Apr 13, 2009

Using: Visual Studio 2005.We are developing three different applications. We currently have 4 different modules that we all share among our applications. When a change is made to one of the modules, we must make changes to the other two modules.If it is possible, how do you (where do you) create a single location for one file to be shared among three different applications? Hopefully this will avoid the unnecessay task of changing a file three times.

View 3 Replies

VS 2008 Create A Single Row In A Data Table?

Apr 20, 2009

I have a data table.

And I only want to have a single row in this table. I then write the changes to an xml file. The user will edit the row in this table save the values in the settings.properties. And then when ready write the changes to the config file.

However, I am thinking is there a better way. As I have to keep removing the row that was currently added. Then create a new one.

' Add the data to the datatable and write the changes to the config.xml file
Private Sub btnWriteConfig_Click(ByVal sender As Object, ByVal e As EventArgs)
' Only create a single row. All changes must be made to this row only.

[Code].....

View 1 Replies

Create A Large Amount Of Files All Copied From A Single Original File?

Apr 15, 2012

I am wanting to create a large amount of files all copied from a single original file. I then have a list of names in a listbox that each of of these files will rename to. However I am getting an error saying that the file already exists in the save location even though the files are saving to a totally different folder...

code below.

Dim Counter As Integer = listFileNames.Items.Count
Do Until Counter = 0
System.IO.File.Move(txtOpen.Text, txtSave.Text)

[Code]....

View 1 Replies

VS 2008 Bind A Single DGV Cell To A Single Class Property?

May 7, 2010

I am trying to use the DGV to view various properties from a variety of different class instances. Is it possible to bind each cell individually?

View 9 Replies

[2008] Multiple Lines Of Txt File -> Single String?

Feb 26, 2009

I have a *.txt file which contains instructions and data, with its own comments (preceded by ! ), blank lines, and each instruction begining on a new line, but occassionally using two lines. Each instruction consists of several feilds seperated by a TAB. Finally each instruction ends in a comma. Only a few different instructions are there (10 different ones) but there are many of each. Spanning a good 2500 lines. Comments and blank lines are obviously of no interest to me. I merely need to read the instructions and the data that follows it.

Now, I have successfully used 'System.IO.StreamReader.ReadLine' to go through it line by line, picking out lines begining with certain strings (first 3 characters of a known instruction). All good, I can 'lift' out the lines of interest and store them, for them to be split up later (seperating their fields into instruction, data, etc..) and then into an array.

The problem is, since some of the data fields in these instructions are so long, it spans two lines, before it ends with a comma. Using the above method, I end up with two array entries for a single instruction, since I have stored individual lines rather than a complete instruction. The only similar situation I can tihnk of to explain this, is to pick out sentences in text, and store each one in a string. Of course these end with a period (full stop) but span two or more lines.

I am hesitant to post an example, since its formatting is rather strange, but it is generated that way from 3rd party software, so I cannot change that for my software application.Perhaps there is no 'graceful' way of doing this, meaning I would have to find a way of 'adding' the second line of the instruction, to the string of the first line. Or perhaps reading each line character by character, literally storing every number/letter until I reach a comma.

View 4 Replies

VS 2008 Append All Files In A Folder As A Single Text File

May 4, 2009

I have files in a folder which i need to append and produce a single textfile.

1)I first select the folder using FolderBrowserDialog and write the path in the textbox.
2)By the click of a button I want to append all the files contained in that folder and write it in the same folder with the name of the textfile as new.txt

[code]This code open the FolderBrowserDialog and selects the folder and writes the path in the TextBox1..I need help to proceed with appending the text files within that folder

View 3 Replies

VS 2008 Developing A Custom Component (single Signed Dll File)

Nov 26, 2011

Im currently developing a custom logging component, that we will deploy with all our applications, windows services, webapps, windows apps etc. I have a few questions of various nature. The component is a single signed dll file:

1) Which is the "safest" way to get the current directory? For example, in the config file, in the config section I have a property "logpath". The application will read this and write a log file depending in what they write:

c:myapplog (it will write a log here, create whatever folders it need) /Log (directly under the installed app directory, like c:program filesmyappLog) Log (same as above) I need something that work with both windows and web apps, for webapps it will log under the virtual directory of the aspnet app.

2) For exception handling, if nothing special is happening, like in the DAL, I get a sql server exception, is there any point in using

[Code]...

View 10 Replies

Create A Single Dataset In Studio To Database / Create A Dataset For Each Form

Jun 28, 2009

I created a SQL database using the migration tool.I am converting my access forms to VB.net (VS2008).I am wondering if I create a single dataset in studio to the database or do I create a dataset for each form (query)? I am trying to determine what the best solution is. Many of my forms have drop downs that are populated using queries from tables.

View 3 Replies

Create Two Diff App In Single Project?

Feb 23, 2010

I need to create two diff app

1.Windows application

2.WPFapplication

in a same project.I need to call forms and pages of both app and integrate them ex How to call WPF page from a win application)

View 1 Replies

Create A Child Window In Single Form?

Jun 18, 2009

i am doing windows application in vb.net , i want to know how to create a child window in single form.

View 3 Replies

How To Create Single Player Mouse Game

Oct 27, 2011

I create a mouse game for a single player. Set up a form with 4 rows of pictures boc controls. when a start button is clicked the mouse is "behind" one of the buttons while a stop image is behind 3 other picture boxes. The object of the game is to click the correct picturebox that contains the mouse. If the stop image appears before the mouse then the game is over. I don't understand how the logic works.

View 2 Replies

VS 2008 File Handling - Create A '.txt' File And Then Fill In The Dates And Times When The Program Is Opened

Oct 25, 2009

I want my program to be able to create a '.txt' file when it is run for the first time, with the date and time the program was accessed, and to be able to add new 'logs' of program history every time it is accessed. What i mean is that i want my program to be able to create a '.txt' file, and then fill in the dates and times when the program is opened.

View 7 Replies

Create Multiple Reports With Single Entry Into Form In VB2005?

Dec 13, 2011

I have to prepare about 125 or 150 Loading Slips for various Mines to move carting to our various Factory daily into Windows Form of ERP System.

Just like here: Date:18-12-2011, Requirement No.001/11-12, Mines No.OP-128, In Charge Name: Karsanji Plot=0,Satta=0,Dump=6, Transporter:Ghanshyam Roadlines Destination:Madhapar Here Some Button to generate/modify records: Add,Edit,Save,Delete,Previous,Next,etc If I distribute 15 trucks for Ghanshyam Roadlines to move carting from OP-128 to Madhapar then I will have to entry 15 times into Windows Form of ERP System for creation loading slips numbers from 1 to 15. Here all my data to input 15 times into ERP is same, so why is it not possible to create multiple reports with single entry form?

View 2 Replies

Perform Two Hashing Operations Concurrently On A Single File Without Reading The File Twice?

May 18, 2011

I want to perform two hashing operations concurrently on a single file, without reading the file twice. Is there some way to share the FileStream between two synchronized hashing threads? For example:

Dim Stream As New IO.FileStream("...", IO.FileMode.Open)
Dim HashA, HashB As Byte()
Dim A = New System.Threading.Thread(Sub()

[code]....

Maybe some way of caching a stream? Trouble is, I don't want the entire file in memory at once (it could be many gigabytes in size) and I don't want the file read more than once, due to speed issues. I want the file cached only sufficiently to ensure that both threads can work.For example, suppose at some point in time, thread A had read 100k of the file, but thread B had only read 20k of the file. The portion of the file between 20k and 100k should be cached; but then progressively forgotten as thread B catches up. Then again, if thread B is too slow, we might still end up with hundreds of megabytes being cached.Maybe thread A should be made to wait while thread B catches up. Maybe the ReadByte() function of the stream should block for a while if one of the threads is too far behind?

View 13 Replies

Make Application 'single File' And Get Rid Of XML Config File?

Dec 29, 2010

I have this pretty simple application, it uses a webService to transfer data to my servers DataBase. Now it is very important for me to keep this application as one single file, and not having some XML files needed for it to work, but this is the case. I think the XML file holds the information to this webService, so without it the application crashes. Is there a way to get the application to work without this XML file, or a way to put the XML inside the exe archive?

View 1 Replies

Create Txt File Use 2008?

Oct 12, 2009

Why I can not create this file?

How suppose to be the correct program?[code]...

View 1 Replies

How To Create A Dxf File With Vb 2008

Nov 5, 2009

I want to create a dxf file with vb2008. I calculated the coordinates with vb and i want to show the graphic in different cad programs. What do i have to do ? I thought about writing a parser, but i also ask myself if there do not t exist already any classes in vb to create a dxf file, but i haven`t found one.

View 1 Replies

VS 2008 Best Way To Create A Log File?

May 5, 2009

I am developing an application for a client. They have requested some logging information.I am thinking about be able to log debug messages, information, and serious errors.Is there a way I could automatically switch the ones I want to log? For example, if I just wanted to write information to the log file, or write debug and information, or just serious errors.

What is the best practice when creating and writing to log files?

View 2 Replies

VS 2008 How To Create A New .txt File

Aug 14, 2009

How would I create and open a new .txt file located perhaps on the desktop?Just a normal windows .txt file, Create a new one they can choose

View 11 Replies

VS 2008 Way To Create This File?

Sep 24, 2010

I am working on moving hard-coded mappings from my VB.NET code to a database. One set of mappings I am working with right now has 385 entries. So let's say everytime I get "Friday" in my input I want to map it to "F", if I get "Monday" I want to map it to "M", etc. I can edit my code pretty quickly to end up with a file that looks like this:

"Friday"
"F"
"Monday"

[code].....

View 8 Replies

Interface And Graphics :: Create An Image That Is To Mimic A Single Clock Rotating Hand Within A Square Area?

Aug 20, 2011

I have to create an image that is to mimic a single clock rotating hand within a square area,and the user has to choose the width and speed of the rotation and the direction.i managed to create the square area with a hand inside,with this codes and variables,

(Dim Mygraphics As graphics = e.graphics
mygrqaphics.Draw Rectangle(pens.color x1,x2,y1,y2)

mygraphics draw line(pens.color,x1,x2,y1,y2),now i have to find codes and variables to rotate the hand or line within a square area.one point remaining constant the other moving.

View 1 Replies

Create A *.txt File With VB 2008 Codes

Oct 18, 2009

trying to make programe can creat and write text files of extension ".txt" and i still need codes for creating and editing a *.txt file

View 13 Replies

Create A DLL File In 2008 Express

Nov 22, 2008

I am trying to create a DLL file in VB.NET 2008 Express which will can be called from a VBScript file. I have set up a Class Library solution but when i try to register it I get the following error.

"The module ... was loaded buy the entry-point DllRegisterServer was not found."

View 2 Replies

Create A New Mdf File In Express 2008?

May 30, 2010

how to create a new mdf file in express 2008?before, I used some sample projects which have the mdf file, so I can use sql express on local machine. now, for a new project, I want to create a brand new mdf file, but can not figure out how to do it.

View 12 Replies

VS 2008 - How To Create File Extension On PC

Jul 1, 2009

I found out how to create file extensions on my PC and I want to open my program with the file extension, but how would I be able to load the text in the file extension into a textbox on my form if that's what the extension is for? And another question, how could I make a file extension that would act like a folder? Like store images and sound files and things like that.

View 9 Replies

VS 2008 : Create An EDI 837 /X12 File From A SQL Query?

Nov 22, 2009

create an EDI 837 /X12 file from a SQL query. I will be creating a temp table then inserting data to the file.The X12 file has essentially 3 parts: The Header, The Detail, and The Footer

The Header looks like this

ISA*00* *00* *ZZ*HIS199 *ZZ*300002373 *060920*2314*U*00401*000000089*0*P*:~
GS*HC*HIS199*300002373*20060920*2314*43*X*004010X098A1~
ST*837*000000001~
BHT*0019*00*90*20060920*2314*CH~

[code]....

What method choices do I have to choose from to assemble this to a file?

View 3 Replies







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