Make A Folder That Program Makes Hidden

Oct 15, 2010

How do i make a folder that my program makes hidden. I am using (MkDir)

View 5 Replies


ADVERTISEMENT

Make A Hidden Folder?

Dec 24, 2009

Is it possible to make a folder that is password protected that is only viewable by your application? I want to make a program that can make such a folder and allow access to it only through the program.

View 6 Replies

VS 2008 : Create And Make A Folder Hidden From User?

Oct 20, 2009

How would i create and make a folder hidden from user?

View 3 Replies

Make A Program That Makes A Popup On Screen?

Mar 4, 2009

I where wondering about it is pausible to make a program that makes a popup on your screen at a time you chose in the program? and then you could choose a text and a icon as a message, so the program reminded you about something?

View 15 Replies

Make A Program That Makes All The Possible Characters And Numbers?

May 8, 2009

how to make a program that makes all the possible characters and numbers (A-Z & a-z & 0-9) from 5-20 characters, and put them in a list or something?

Someone may think this is bruteforce hacking, but I don't see why I should do that? If I want to find a password on 13 characters, it would be: 62^13 = 200028539268669788905472 possibilities... in other words... it would take forever!

View 3 Replies

Make A Program That Makes User Type In A Password

Aug 28, 2009

Im trying to make a program that makes a user type in a password, then open a folder where the user can put files. but once they close out of the file browser. the program needs to save the files and remove the directory. for example think of a file cabinet being the program, and the drawer being the temp folder. when the user closes the drawer, it goes back into the cabinet, or in this case the program.

View 7 Replies

Make A Program Calculate The Number Of Comparisons An Insertion Sort Makes?

Jul 15, 2009

I got a list of 16 items and I have sorted them and I want to show the number of comparisons the program had to make using the insertion sort?(in a textbox for example)I mean is there a formula?

View 10 Replies

Asp.net : Make Hidden Additional Attachment Hidden And Visible?

Mar 13, 2012

I want to make 5 attachment options in that 4 out of the 5 are hidden.but when he clicks "more attachment" link it will show the other 4.Im using ASP.NET with VB?

View 2 Replies

Make A Program That Opens A File In The Folder The Program Is Stored?

Aug 26, 2009

How do I make a program that opens a file in the folder the program is stored?

View 6 Replies

Copy A Hidden Folder?

Oct 14, 2011

I am designing a program that will backup a user's profile in Windows XP. So far, the only snag I've come across is copying the 'Signatures' folder from 'C:Documents and SettingsUSERNAMEApplication Data$MicrosoftSignatures' I believe the issue is that the 'Application Data' folder is hidden. [code]...

View 10 Replies

How To Create A Hidden Folder

Jan 7, 2010

I want a code to create a hidden folder , Sub Folders , And files in the FoldersHow can I do thatI usually use the following code to create a folder

If My.Computer.FileSystem.DirectoryExists("c:Test") = False Then
My.Computer.FileSystem.CreateDirectory("c:Test")
End If

[code].....

View 4 Replies

Create HIDDEN Files And Folder?

Oct 8, 2010

How do I create HIDDEN files and folder (eg. a config file to store program settings) in VB.net?

View 2 Replies

VS 2008 Turn/off The Hidden Folder Option?

Oct 22, 2009

How would i make it so my application can turn/off the hidden folder option?

View 9 Replies

How To Make A Simple Folder Locking Program

Jul 27, 2009

how to make a simple folder locking program and sorry don't have any code for it.

View 2 Replies

Make A Program That Password Locks Any Folder?

Nov 23, 2010

I use VB 2008 express edition and i have this problem.I want to make a program that password locks any folder you want.(Using Icacls from command promt).My problem is that when i run the program

Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If My.Computer.FileSystem.DirectoryExists(TextBox1.Text) Then

[Code].....

All this is done becouse i can't save the listbox contents in My.Mysettins.If anyone would be able to show me how to do it i would be helpfull.But please don't give me 50 lines of ununderstandable content.I want something that i will be able to understand becouse there no reason if i use it without knowing what it does.

View 1 Replies

Make VB Program Look For Files In The Same Folder It Is Running From?

Apr 30, 2010

I need to have my VB program look for two specific programs in the same folder it is running from. How do I do that?Here is the code for when I run my program. I need it to look for the files that are underlined. They are the tpfh20 and tphd20.

Private Sub btnRunRelap5_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles btnRunRelap5.Click

Dim pathString As String = String.Format("relap5 -i {0} -o {1} -r {2}", txtInput.Text, txtOutput.Text, txtRestart.Text)Dim stripString As String = String.Format(" -s {0}", tbStripFile.Text)
Dim guiString As String = " -n gui"
Dim waterprop As String = " -w tpfh20 -d tphd20"
If Not lblChangeStripFile.Visible Then

[Code]...

View 5 Replies

Hidden Database Files In Application Folder After Installation?

Nov 16, 2011

I have tested a few applications downloaded from net. They are surely database applications but when I checked in the folder where the application is installed, there is no database (no mdb, sdf etc.) When I install my application, my databases are always in the folder.

What is the trick to make them invisible but they should still work.

View 1 Replies

Make A File.copy To The Program Files Folder But Can't Get Access To It?

Apr 19, 2010

I'm trying to make a file.copy to the program files folder but can't get access to it.This is on windows vista and 7.

View 6 Replies

Freezes Up The Program And Makes It Unusable?

Mar 26, 2011

In a function I have

Do Until PageLoaded() = True
{
Nothing
}

The problem is it freezes up the program and makes it unusable. I fixed it using timers but it makes my program real sloppy and hard to edit.

View 13 Replies

Identify When Another Program Makes Sound

Sep 10, 2011

I was wondering if it would be possible to monitor a programs audio output and identify when its on / off? I'm coding a carpc frontend and would like to mute the audio when the navigation program speaks directions.

View 1 Replies

Progress Bar Makes Program Hang?

Sep 4, 2011

Try
OleDbConn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\list.mdb")
OleDbConn.Open()

[code]......

View 5 Replies

Threading Makes My Program Not Responding?

Feb 12, 2012

here is my script:

Private Sub UpdateThread()
Dim AppDir As String = Application.StartupPath()
My.Computer.Network.DownloadFile(MyUpdate.UpdateFetchURL,

[Code]...

It does perfectly the UpdateThread task, but program just hangs.

View 1 Replies

Line - Make A Console App That Basically Makes A Big X Between Pipes

Feb 3, 2011

i am trying to make a console app that basically makes a big X between pipes, but with a fixed line on the bottom where you can freely move a <#> with the arrow keys i did the giant x but i have no clue how to make the fixed line and i cannot find any information about it. i tried using the Console.write() but that only gives move a line that i cant use. Il paste the code i have to far.

[Code]...

View 2 Replies

Click On Button That Makes Program Bar Activate

May 23, 2010

[code] When I click on the Button that makes the Prog Bar activate then when its all full it spams the MessageBox saying "Hai" Unlimited times.

View 1 Replies

VS 2008 - Program Which Makes Tables In MS WORD?

Apr 7, 2012

I am working on a program which makes tables in MS WORD. But there are many parameters that should be asked. Its so embarrassing to ask all of them with inputbox while codes are working. I made forms for each tables which will be created. While codes are working, when it is the time to create table, form appears and user inputs the datas and press OK button and table is build according to these datas in MS Word. Does anyone has an idea ?

View 1 Replies

Plugin That Makes It Available To Make Visual Studio Language Independend?

Nov 3, 2011

does anyone know if there is a plugin that makes it available to make visual studio language independend? So when I "push" a button I can see and edit the code in C# or in VB.net? I would be ok if I cant use all language specific options.

View 1 Replies

VS 2010 Anyway To Make Button That Makes All Enabled Timers Turn Off

May 24, 2010

i was just wondering is there was anyway to make a button that makes all enabled timers turn off. Because at the moment i am going to end up with loads of lines basically repeating this.. [code]

View 4 Replies

Add A Feature To Program That Makes It So When The Cursor Moves Off Of The Form?

Jun 13, 2010

I'm trying to add a feature to my program that makes it so when the cursor moves off of the form, the form drops in opacity, making it sort-of transparent. However, it's not working for some reason.

Private Sub hovertimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles hovertimer.Tick
If MousePosition.X < "0" Then Me.Opacity = 60%

[code].....

View 5 Replies

Retrieving Processor Current Speed Makes Program Run Slow?

Jun 5, 2012

I am trying to create a program in Visual Basic which will measure the performance of the CPU with every core, one at a time. In this program, I decided to place a couple of text boxes that display the processor speed and the actual processor speed. I need to get the actual processor speed to update and I have tried doing this already using a timer set to tick every second. However, when I load the program it runs really slowly and prevents me form doing anything within the program, including trying to close it down, and all it does is updates the text box every second. I have looked in task manager to find out how much CPU the program is using and it shows that my program is using 0 - 3% CPU.

Here is the code currently use

Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
Dim mSearcher As New ManagementObjectSearcher("SELECT * FROM Win32_Processor")

[Code]....

View 2 Replies

VS 2010 Higher Level Of Access Makes Program Dysfunctional

Mar 13, 2011

So I have this program which I can use to drag files in it and do something with it, and when I run it as administrator, it doesn't let me drag the files in at all, but when I run it normally it does. Is there a reason behind this? And how would I go about fixing it?

My code if it means anything:

Imports System.IO
Public Class Form1
Dim SetSU As Microsoft.Win32.RegistryKey

[Code]......

View 5 Replies







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