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


ADVERTISEMENT

VS 2008 - Important To Turn Option Strict On ?

Oct 13, 2009

Why is it so important to turn option strict on? I admit I am not a professional programmer, but I have written a great number of useful applications...I am fairly well (although self) educated in object oriented programming... I even write programs for my business...I always have felt that I am missing some background theory that is probably really important (I have a grad degree in math, no comp sci)...I have never turned on Option Strict for any project I have ever written, and I guess I just want to know, theoretically why is it important?

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

Compress Folder In D: Directory In Turn (loop)

Jul 14, 2011

I have a task..Since im a beginner in VB, how do i create the program which can compress the folders in Directory ( D:BackupFolderName) automatically in turn..I have around 20 folder in this directory..(20110501-20110520)..I need to use Loop or which statement?this is compress codes to compress one folder automatically..

[Code]...

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

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

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

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

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

Copy A DLL Into The EXE Folder, Set An Option ?

Mar 11, 2012

I developed a VB Server Listner program that works fine when I run it in VS 2010 but when I try to Build it and run the EXE most of it works but not the TCP part.It doesn't connect to the client.I'm running Win 7 (64) with .Net v4.0. Do I nned to copy a DLL into the EXE folder, set an option in VS before I do the build, or something else?

View 7 Replies

Take A Screenshot = Turn It To Byte() - Send Through Tcp Connection Then Turn Back Into Image To Put In A Picture Box On Other Side?

Feb 11, 2012

My current code: Server: Imports System.IO Imports System.Text Imports System.Threading

[Code]...

View 9 Replies

Option To Remove A File Or Folder From Appropriate Database Table

Jun 22, 2010

I have a very simple app (at the moment) that stores file names/paths and folder names/paths in an SQL database and displays them in a ListView and TreeView respectively. All fine and dandy.I have an option to remove a file or folder from the appropriate database table and then recreate the associated list.[code]I've checked and double checked the folder table adapter (even to the point of recreating it c/w Insert, Update and Delete commands) to no avail.

View 1 Replies

Turn Off "Public Folder Sharing" Programatically?

Apr 29, 2010

I have a requirement to turn off "Public Folder Sharing" under "Control PanelAll Control Panel ItemsNetwork and Sharing CenterAdvanced sharing settings" programatically.I know how to turn off Network Discovery and File and Print sharing with netsh command but

View 2 Replies

Turn Off And Turn On Background Music In Program

Feb 17, 2012

Right now I can add background music in my program by using this code

My.Computer.Audio.Play(My.Resources.Music_3, AudioPlayMode.Background)

I can also turn it off and change the music by using this code

My.Computer.Audio.Stop()
My.Computer.Audio.Play(My.Resources.Another_Music, AudioPlayMode.BackgroundLoop)

Is it possible to pause the music then if I resume the music it will just continue the flow? I mean if I pause the background music in 33 seconds and the music has 50 seconds and I resume it will just continue playing in 33,34,35 etc.. seconds?

View 2 Replies

Turn Off Events And Then Turn Them Back On In Program?

Sep 1, 2009

I was wondering if their was a way to for me to turn off events and then turn them back on in my program or just queue them up until i am ready for them to be excuted. Kinda like how a OS turns on and off interupts. Is this one of those general programming no-nos?

View 1 Replies

Setup Installation - Show Only Drive Letter Like C - D Not To Give Option Of Folder

Feb 12, 2010

In .Net Setup Wizard , While Installing Application Wizard shows ' Folder where to Install' but I want to show only Drive Letter like C, D etc Not to give option of folder

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

Get Folder Attribute "hidden"?

Jun 22, 2012

i wrote this code to verify if the folder attribute hidden ist true:

If oDir.Attributes And FileAttributes.Hidden = FileAttributes.Hidden Then
return true
End If

It returns always true! The code below works correct:

dim oDir As New DirectoryInfo("OrdnerPfad")
Dim attrib As System.IO.FileAttributes = System.IO.File.GetAttributes(oDir.FullName)
If (attrib And System.IO.FileAttributes.Hidden) = System.IO.FileAttributes.Hidden Then
return true
Else

Why does the first code do not work correctly.

View 3 Replies

VS 2008 Turn String Into Name?

Apr 14, 2011

i'm working on a game where when your character (in a picture box) collides with anthother charachter (also in a picturebox), the character disappears. i want the computer to generate characters as you play. I'm trying to figure out how the computer will know if the player character has collided with a computer generated character. as the computer generates characters it puts their names in a list box. what i'm not sure how to do is pull the names out of the list box and have the computer check the location property of the picture box with the name that corresponds.

View 3 Replies

VB 2008 Code To Turn Off Monitor

Jan 26, 2010

I found many solutions in C++ however they seems fail to satisfy my requirement. I need code to turn off monitor when i'm away and if i want it to turn on, i must type specified key instead of any key press or mouse movement as usual.

View 5 Replies

VS 2008 : Monitor LPT Prints And Turn Them To The File?

Feb 26, 2010

Im currently working on application where i need to monitor LPT printer port for traffic. Now i need to found the way how to monitor LPT prints and turn them to the file. Anyone can help me out please. I have try to search on google and also here but not success, only what i found was example in VC++ but i need it in VB.NET or at least in C#.[URL]

View 1 Replies

[2008] Programmatically Turn On/off The Backlight On Laptop?

Feb 10, 2009

1st. I want to programatically turn on/off the backlight on my laptop. I believe it can be done with the user32.dll, but I can't find the exact code.

2nd I want to programatically turn on/off my WiFi adaptor, just to interupt my internet connection for a few seconds.

View 4 Replies

.NET Icon Will Only Work In Small Folder Icon Option Only?

Jun 26, 2011

Got an annoying issue it's Visual Basic 2010 I changed icon where the assembly name.I got a good icon it has lots of sizes, or I tried diff sizes like 64x64 128x128 nothing seems to work I only see the icon when i do View > Details so it's small icons in the folder, but if i have view large icons It doesn't work. I even used the same icon on VS 2008 and it worked.

View 1 Replies

VS 2008 Run Dll Process Hidden

Dec 8, 2010

I am trying to run this command as a hidden window. But it still displays it fine. This works for any other application but because it's running a dll I believe it isn't meant for that.

[Code]...

View 14 Replies

VS 2008 Starting CMD Hidden?

Oct 4, 2009

Shell("CommandHere")How would I make it start CMD hidden?

View 2 Replies

VS 2008 - Turn On Caps Lock When Push Button

May 12, 2009

Im really bored an I can't think of another program to make but im going to give it a shot. Im trying to make a program that can turn on caps lock when you push button 1(Yes I know theres already a caps lock button on the keyboard Lol) and turn on off caps lock with button2. Im am also trying to see everytime i push button 3 it will hold shift down for as long as o dont let go of the left mouse button but when I let go of the left mouse button it will let go of button 3 and shift will be off O.o. Is there a way to do this?

View 1 Replies

VS 2008 What Should Turn Off To Make Them Stop Popping On Debugging

Jul 6, 2009

I have a small problem, When i Start Debugging my program a lot of windows popping up such as: Watch 1 - 4, Memory 1 - 4,Autos And Registers. What should I turn off to make them stop popping on debugging?

View 4 Replies

VS 2008 - Creating Remote To Turn Up / Down System Volume Via WiFi

Oct 28, 2009

I am working on a little project for my phone creating some sort of remote to turn up/down my system volume via wifi. The phone will send data to a text field on the website lets say such as "vol up" and the vb app sitting on the computer will be constantly reading this text field for key words like "vol up", "vol down". when it see's a recognized command it reacts by turning the volume up and so on. And one more thing: Is it possible to have a vb app that uses http? E.g., sits on port 80 itself and can be accessed via local ip.

View 8 Replies

VS 2008 Turn Off The Windows Style Like The Real Steam Window

Aug 3, 2009

I Trying to make my own fast steam client but I wonder how I turn of the windows style so it looks like the real steam window

View 7 Replies







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