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
ADVERTISEMENT
Oct 13, 2009
I want to make a tool that will assign a USB pen drive a drive letter, I am using WMI to acknowledge the device being plugged in, I can pull the deviceID, name, etc now I just need to work out how to assign the device to a drive and I just cant figure it out
View 4 Replies
Feb 16, 2011
i am currently using this code to open and close my drive in VB. However i want to make a single button to open the drive if its close and to close it if its open.
Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal command As String, ByVal buffer As String, ByVal bufferSize As Int32, ByVal hwndCallback As IntPtr) As Int32
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim lRet As Long lRet = mciSendString("set CDAudio door open", vbNullString, 0, 0)
End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)HandlesButton2.Click
Dim lRet As Long lRet = mciSendString("set CDAudio door closed", vbNullString, 0, 0)
View 10 Replies
Jun 28, 2011
I know, looping through is fast enough. But the search program "Everything" can index my entire C: drive in about 15 seconds. Does it read the MFT or something? Can I do this easily enough with VB.NET? Or at all?
View 5 Replies
Aug 29, 2009
can we make code which can make copying a file in a particular drive invalid/access denied?
View 3 Replies
Jul 12, 2011
I design photo viewer app using this code
[Code]...
now how to make my photo viewer open when user open drive C and get all photo in the drive to be shown in it ?
View 14 Replies
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
May 2, 2011
I'm wondering if you it is possible to make your usb flash drive to be like a key for your vb.net program I can't really put it into word the description of it so I will site an example here's my scenario my program has a textbox where you put the password on it to make the program usable but i want instead of typing on it you insert your flash drive and it will automatically insert the password in the textbox and make the program usable.
[Code]...
View 1 Replies
Mar 8, 2010
i have a NAS drive that is mapped to my system..My application will copy files to the drive but the only problem is the drive has a sleep function on it therefore when i try to copy files to it and it is in sleep mode, it says the folder does not exist (drive still in my computer but just with a red X on it)is there a function to make ir ready ? the only other way to do it is to double click the drive icon in my computer then it wakes up... but id rather not do this as its a pain.
View 3 Replies
Jun 22, 2012
Im trying to create a program to gather information about users pcs. So far I have been able to gather thigns like the os, processor, hard drive size and graphics information and I was just wondering how I would be able to collect the name of the motherboard they are using (or model) and the make of the hard drives in their machines.
View 1 Replies
Sep 2, 2010
I want to make a program that makes hidden shortcuts in drive c the files I want to add shortcuts for is in C:/program files/common files/apple/apple application support I want shortcut for all files and folders in this directory
View 4 Replies
Feb 10, 2010
I recently wrote a program to copy files off of a hard drive with a corrupted copy of windows. I'm not sure how to make it run off of my flash drive in dos. I set boot priority to only boot off of the flash drive yet it will not run. I tried writing an autorun.ini file, which did nothing. I think i need to make a boot.ini file.
View 3 Replies
Jan 8, 2011
i am trying to make a program where it copies files to a certain external drive, but i cant figure out how to make it to where you enter your drive letter for the external drive and it copies it.
View 6 Replies
Aug 22, 2010
I'm trying to make the progress bar to display the amount of free space C: has. I have successfully do so with my code which is:
Vb.net
Try
Dim b As String
Dim c As String
Dim dvr As New DriveInfo("c:")
b = CStr(dvr.TotalSize 1000000)
c = CStr(dvr.AvailableFreeSpace 1000000)
[Code] .....
As a last touch to this code I thought I would add a percent bar so it would look more professional. I did so with:
Dim Per As String = (c b * 100)
The problem is that it displays always zero percent why?
View 5 Replies
Apr 8, 2010
I'm creating a WPF application in VB.NET with the 3.5 Framework. (If you provide an example in C#, that's perfectly fine.)
In my project I have a Template for an MS Access database. My desired behavior is that when the users clicks File-->New, they can create a new copy of this template, give it a filename, and save it to their local directory.
The database already has the tables and some starting data needed to interface with my application (a user-friendly data editor)
I'm thinking the approach is to include this "template.accdb" file as a resource in the project, and write it to a file somehow at runtime?
View 4 Replies
Jul 27, 2009
[Code]....
now i have folder call help in("D:help1.jpg")in this folder files download fom another program and save. now i want that i have pen drive .i want to make such command that when click button it copy the files from ("D:heelp..") and copy to the pen drive.
View 6 Replies
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
Nov 1, 2008
how can i make my VB 2008 project just one single .EXE
View 8 Replies
Feb 19, 2012
I'm running the following WMI script to get the associations between drive letters and physical drives on the system, but for some reason it omits CDROMs/DVD-ROMs. Can someone tell me how to get those as well?
Code:
ComputerName = "."
Set wmiServices = GetObject _
("winmgmts:{impersonationLevel=Impersonate}!//" & ComputerName)
Set wmiDiskDrives = wmiServices.ExecQuery _
("SELECT DeviceID FROM Win32_DiskDrive")
[Code3]...
View 12 Replies
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
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
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
Sep 8, 2011
I have this code:
[Code]...
View 12 Replies
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
Jun 16, 2009
I have a program that allows the user to enter a drive letter into a text box. The program then takes the letter and find the physical drive number (i.e. deviceharddisk3..). It then stripes out everything and leaves me with the number 3.
In VB6 I used mDrive.bas from vbAccelerator.com and it worked perfectly. I have been all over the internet and back and cannot find a solution written in VB.NET.
View 14 Replies
Dec 18, 2010
The drive is connected via USB and the problem I'm having is that, periodically, while my code is executing, the usb drive seems to disconnect and reconnect. (Nothing to do with the program, but the drive itself).I want to find a way to prevent these temporary drive reconnects from interrupting my code. IE, i want to insure that whatever read or write that is requested is actually executed even in the case of a temporary drive interruption.
View 1 Replies
Dec 10, 2008
Does anyone know if there is a way to determine if a drive is local or a network drive?
View 1 Replies
Jun 17, 2009
I am trying to get the physical drive (device) number from the drive letter. If the user inputs the drive letter C the program will find the associated physical device number. For example if I input C then the result needs to be \Device\HardDrive1\... Some call it NT Device Name; I think. I have the code for VB6 from vbAccelerator, which works perfectly, but it does not work in VB.NET. My question is there a simple way of pulling the drive info that contains the drive letter and the physical device number. I have searched the internet and found nothing for VB.NET. I would post code but I have nothing for .NET.
View 1 Replies
Sep 29, 2011
USB flash drive or pen drive in vb.net...
View 14 Replies
Jun 16, 2009
I have a program I am converting from VB6 to VB.NET and I am stuck at the very last piece of code. I need to determine what physical device number is associated with the drive letter.
The program takes the drive letter from a text box and goes and finds the device number (i.e. deviceharddrive3...) and strips out everything leaving me with the devicer number; in this case the number 3. I have searched the internet to and fro and found nothing in VB.NET.
My program in VB6 uses a .bas module from vbaccelerator.com called mDrive.bas and works great. I can't figure out how to convert it over to VB.NET.
View 6 Replies