Make A Single .exe File?

Nov 1, 2008

how can i make my VB 2008 project just one single .EXE

View 8 Replies


ADVERTISEMENT

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

Merge An Exe File With A Dll And Make It A Single Exe File?

Jan 12, 2010

I have an .exe file which is using a .dll file.I want to make an .exe file which will do the work. The reason I want to do this is to hide that dll file from the user.

View 3 Replies

Make A Translator - Translateevery Single Letter And Make It 1 Word

Sep 7, 2009

I want to make a translator like this: [URL]...I have already made two textboxes and a button. If I type in textbox 1 abc then textbox 2 must say nop. I already know the If textbox1.text = "abc" then textbox2.text = nop. I don't want that i want to translate the a to a n and the b to a o and the c to p. So i want to translate every single letter and make it 1 word. Its like a secret code. My language looks like that a=nb=oc=pd=qe=rf=sg=th=ui=vj=wk=xl=ym=z n=ao=bp=cq=dr=es=ft=gu=hv=iw=jx=ky=l z=m

View 22 Replies

How To Make .net App Run From A Single USB Drive Only

Sep 11, 2010

I've developed an application in vb.net that can run from a usb drive. But i need my app to work only from that usb in which i distribute it.

If someone copies it to other Drive/USB, it must not work. Do u know how to implement this?

View 1 Replies

How To Make DataGridView Containing Single Row

Mar 6, 2009

How can I make the datagridview contains 1 row? Because I have a toolbar that have two button (forward,backward) and I need the datagridview to be single row because each row is a record in The DB. And when I press the forward button I will go to the next record. And btw, which is better this way or make the datagridview display all the records at once?

View 7 Replies

Make A Single Image Appear Randomly?

Apr 26, 2011

im trying to make a single image appear randomly at any given time i have tryed to figure out the code for this my self however i have had no success any ideas

If HPU.Visible = FalseThen
HPU.Visible = Int((550) * Rnd() + 1)
EndIf

View 2 Replies

Make An Single Instance Form?

Aug 4, 2010

I have a mdicontainer form that summons forms. My problem is when the a user clicks again the menu for that form, it also make another instance of it.

What I did is declare a public class with a public variable on it ex: Boolean isFormOneOpen = false. Then every time formOne opens, it checks first the global variable I declared a while ago if it's false, if it is, instantiate an object of a formOne and then show it. Otherwise, do nothing. Very static, imagine if I have many forms, I have to declare a variable for each form to check if it's already open. Maybe a method that accepts a Form? Or any more clever way to do this.

View 2 Replies

Make Single Instance Application, What Does This Do

Aug 25, 2009

in vb 2008 express this option is available under application properties. does anyone know what is its function? does it make it so that it's impossible to open two instances at the same time?

View 3 Replies

Make Some Single Dimension Array Lists?

Sep 7, 2010

I've managed to make some single dimension array lists but I can't figure out a multi dimension arraylist.

Here's what I'm trying to do:

I have a database (mdb) with 5 columns that I want each row to be in an array list.

In PHP what I'd typically do is:

$array[$field1] = array($field2,$field3,$field4,$field5);

How I do the same in vb.net so anytime I need to fetch an item for a specific for the row1 I could call it?

For a single dimension I could do the following, but I can't figure out how to add more fields to a single array row:

Dim tmpArrayX As New ArrayList
tmpArrayX.Add(field(0))
tmpArrayX.Add(field(1))
etc...

View 1 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 Single Sub Handle Keydown Event For Multiple Text Boxes

May 14, 2011

I don't have an example code, but recently figured out how to make a single sub handle the keydown event for multiple text boxes.What I would like to know is if it is simple enough to have the object name that is sending the event instead of "microsoft..text: 54654" (sender.ToString in a debug window) type of return. I don't know how to make use of that.

View 3 Replies

Parse Single Line In Textbox But Make Each Word / Number A String On Its Own?

Nov 9, 2011

I am populating a textbox with a single line of numbers that I would like to seperate out into strings.[code]...

View 3 Replies

VS 2008 Make Autotyper Press Enter Every Single Time After The Textbox Message Was Typed?

May 21, 2009

I have Visual Basics 2008 express and I tried to make a autotyper, so this is my

Button1: Timer1.Start
Timer1: Timer2.Start
Timer2: SendKeys.Send(Textbox.text)
Button2: Timer2.Stop

So it was my first try ever with VB and it kind of worked... Only 2 problems;

1. Button 2 doesn't really work, I have to click it really many times, then go to a different window, then click it really many times again, in the meantime it keeps on spamming

2. How do I make my autotyper press enter every single time after the textbox message was typed?

View 5 Replies

Native .NET To Unzip Single File From A .ZIP File?

Oct 28, 2010

extract a single file (WantedFile.xml) from a .ZIP file (THEBIGZipFile.zip) using native VB.NET Code?I think .NET FW 3.5 or 4.0 has "System.IO.Packaging.Package " which can be used? Not sure. Please advice.

Note: I will not be able to install or distribute any other DLLs like (ICSharp or VJ# or cant use process command to invoke winzip etc).

View 4 Replies

Is Running Multiple Threads Faster Then A Single Thread On A Single Core Cpu

Dec 23, 2009

Say I have a code with 3 methods that do some pretty intensive work. Would executing these methods on 3 seperate threads be faster then executing them one after the other on a single core cpu? And what if it's a dual core or HT?

View 8 Replies

Querying A Single Column And Displaying All Results In A Single Textbox?

Sep 5, 2010

I am trying to make a list, separated by a comma, of entries from a single column in a SQL database. I have been spending the last several days searching for a way to do this, but every thing I found either didn't work, or wasn't exactly what I was looking for.

The query will pull all the email address that are not null. What I need to know is how to take the result of that query and make it look like this:

email0@address.com, email1@address.com, email2@address.com, etc, etc, ...

I feel like I should know this, but for the life of me, I can't remember nor can I find it in any of the textbooks I have.

I am using Visual Basic 2010 and SQL Server 2005. I also have access to Visual Basic 2005 if needed.

View 2 Replies

SqlCommand Parameter / Replace A Single Quote With Two Single Quotes

Oct 23, 2009

I use SqlParameters when executing database statements. I know that I can replace a single quote with two single quotes... but in the past SqlParameters took care of this for me. I have two projects.. in one, the SqlParameter does this and it handles single quotes fine, in another, it does not and I'm at a loss why (I even copied and pasted the code):

[Code]...

View 9 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

C# - .Net Whole Application As A Single .exe File?

Jul 16, 2010

I have developed some software with no database. I want to create an .exe of my .Net project so I can give only the .exe file to users to use the software.

Unfortunately I don't know how to create an .exe of my project in .Net.

View 7 Replies

Merge Them Both Into A Single File?

Aug 17, 2009

i got 3 text files with me. one has the emails another one has the hash.. i want to merge them both into a single file.[quote]first file contains : [URL]..second file contains hash which corrsponds to the password of the users in the text file 1 :which i have to merge like: [URL]..There is a trailing space at the beginning and end of each line in both the files. just a single space i got to remove that too..

View 10 Replies

Update A Single Row And A Single Cell In Ms Access Database?

Dec 3, 2010

I am trying to update a row or a single cell in ms access through vb.net. But when i update the text box named NRIC, say for example i want to update "s4522147B" to "tr4521856C" and mean while leaving the other fields the same.

But the thing is when i make the changes in nric.text (textbox), the dataset actually updates the whole column in the table instead of the selected textbox.

Below is my code for the update part

[Code].....

View 3 Replies

Combining Two Projects And Get A Single .sln File

Apr 19, 2012

I want to combine two projects into one i.e. image and audio steganography with a single .sln file. How do I connect them? I'm using Visual Studio 2008.

View 2 Replies

Compressing A Database To A Single File?

Jun 4, 2010

In my contact manager program I have been storing information by reading and writing comma delimited files for each individual contact, and storing notes in a file for each note, and I'm wondering how I could go about shrinking them all into one file effectively. I have attempted using data entry tools in the visual studio toolbox and template class, though I have never quite figured out how to use them. What would be especially convenient is if I could store data as data type IOwner (a class I created) as opposed to strings.

I'd also need to figure out how to tell the program what to do when a file is opened (I've noticed in the properties how to associate a file type with the program though am not sure how to tell it what to do when it's opened).

Edit:

How about rephrasing the question: I have a class IContact with various properties some of them being lists of other class objects. I have a public list of IContact. Can I write Contacts as List(Of IContact) to a file as opposed to a bunch of strings?

Second part of the question: I have associated .cms files with my program. But if a user opens the file, what code should the program run through in an attempt to deal with the file? This file is going to contain data that the program needs to read, how do I tell it to read a file when the program is opened vicariously because the file was opened?

View 2 Replies

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

Downloader - Single File Downloading ?

Feb 13, 2011

Having problems with this downloader. Its a single file downloader (the file location is in the code) and it only downloads the file as 0kb (it debugs fine). Also, i think my directory finder is not working, as i did it the simple way, because i dont know the environment code. (please note i have changed the website link, but the actual link works fine )

Imports System.Net
Public Class Form1
Dim Directory As String

[CODE]...

View 5 Replies

Finding Single File Using Wildcards?

Mar 3, 2012

I'm using Visual Basic Professional 2010, I have two directories of XML files. The naming convention in directory one is a user's name, a six digit date and ending in ".xml_CREATE.xml". So, I perform some work on a file in directory two. During the course of that processing I discover that a file exists in directory one called "Mike" an unknown six digit date and ending with ".xml_CREATE.xml", so while I have no way to know the date, I know it exists and would look something like Mike030312.xml_CREATE.xml. So, now I want to load that file as an XElement that I will eventually incorporate into an XDocument, so I need to perform a Load similar to:
myXMLFile = XElement.Load(My.Settings.XMLDir & "" & Mike030312.xml_CREATE.xml),
However, since I don't know the date, I need to insert wildcards at that spot. How do I make that happen?

View 13 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

Read Single Lines From .txt File

Mar 4, 2012

I am using vb 2010 and a windows form in my Web Browser project. In my favorites bar I need to be able to import my users favorites (that he may add) through a .txt file. I realize one way of doing this is creating multiple files stored in one master folder and reading the whole file of each which would contain the URL, but I would much rather have them all in one .txt file, but for that to happen i must read line by line from that file to import the favorites. Therefore, my question is how can I code my project to read through a .txt file line by line and return each line in possibly an array? "We are what we repeatedly do. Excellence, therefore, is not an act but a habit."

View 6 Replies







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