VS 2008 : Open A Folder Inside A Form?
Feb 5, 2010Is it possible to open a folder inside a form?
View 11 RepliesIs it possible to open a folder inside a form?
View 11 RepliesHow do i open, for example .exe file, when i click the button, but not in new window, in my VB form? I have no idea how to do that .
View 12 RepliesI need to open some external applications such as notepad.exe inside the VB.NET MDI form, and also I need to make sure that there is exactly only one copy of this running always.[code]....
View 1 RepliesI have a folder that contains overs 1000 files,some files are sql script and others are text doument.I want to rename all the sql files and for the text documents,I want to replace a particular text by another text but opening each document and doing replaceAll requires lot of time
View 1 RepliesI am developing a software using microsoft visual studio basic 2010. I used a datagridview control to display a list of data from product table. What I want to do (actually I am not sure how to do it, or is there a way to do it), when I choose one of the value in one of the column inside the table, I want it to open a form that contain data(details) based on that value.
How to do it? How to call the value that I pressed, so it can be used to open a new form containing the details of that value
Example of the data: (the "system" column) SYSTEM
topaz
nex1300
Nec
If I pressed "topaz" system, it will prompt me to a new form containing the details of that "topaz" system.
In my project i have created few folders to better structure my forms.. my problem is how can i call up (open) a form in a different folder.
eg. Form1 is located in main directory, how to open form2 which is located in a folder called Folder2 (within same project)
open form inside other form
View 3 Repliesi want the .exe file inside my project open when i click the button i add.someone said, try this:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
System.Diagnostics.Process.Start(GetType(TEST), "firefox.exe")
[code].....
How would I create a dir Inside %temp%? Then extract the file to it and Open a That folder. So far this is my code.
[Code]...
im new to coding (started coding last month) so im a little stuck on how to do this, im making some emulation programs to learn coding with, and a part of it is to point the app to a .iso/.bin file and scan the data inside of the iso/bin to check if a file exists.[code]My issue is i cant find any class examples, or any information etc on how to code it so my application can see the data inside of the iso/bin instead of just see'ing the iso/bin file, so that i can then check the data inside the iso to see if the file exists etc.Im a novice still at coding so making a new class myself to look inside the iso/bin is to complex for me.
View 1 Repliesmbedde resources writing to temp folder and they all works fine but i have the exe that requires the files in a folder example folder1 , my path isMy.Computer.FileSystem.SpecialDirectories.Temp for all the files im using but how can i addMy.Computer.FileSystem.SpecialDirectories.Temp.folder1to string so it creates the folder and i can write the two files to this one instead of regular temp ????
View 18 RepliesMy application is designed to open a desired folder. Now, I want my application to be able to capture the path & name of the current open folder in Explorer so that the user can easily save it as favorit without writing the path and stuff.
View 6 RepliesI have ListView box with a file path for example
C: est.txt
So how can i open the C: So i just want to open the folder were the file is located and not the file its self.
I have create a project with one main form window and also i have to use a number of other forms as well. now i want to open these other forms inside the main window and not outside. I'm using Visual Studio .NET 2010 as developing environment.
View 1 RepliesI have a MDI form containing 2 other forms that I first created via GUI and than manually added to the MDI form.Form1 = MDI formForm2 = Form containing a WMP and buttonForm3 = Form containing a butoon. This form's opacity is set to 50%, to make it semi invisible.My MDI Form looks like this
Public Class Form1
Dim f As New Form2
Dim g As New Form3
[code].....
I would like to place a form inside of a form, how would I do that?It would be like photoshop, where the tools form is inside the main form, or the filter form is inside the main form.
View 9 RepliesI'm using a printcreen function where I use X and Y to set where the screenshot will be taked. But the problem is that it uses the X and Y from the entrie screen. I only want it to use it inside the form.E.g the 0, 0 shouldn't be the in the top left corner of the screen, it should be the top left corner of the form.
View 8 RepliesI have a folder that contains master copies of about 50 txt files.
Is there a way to open each of those text files and save them under the same name but in a new folder?[code]....
I am having trouble trying to accomplish a search for a folder with a wildcard within a directory.
The folder will look sort of like this: [2008][560909][Market Change] or [year][number][name]
Thus far this is what I have:
Function searching()
Dim choice, input
Dim strPatheServices
[Code]....
I am uncertain where to go from this other than add the wild card to the exist so like:
System.IO.Directory.Exists(strPatheServicesinput + "*")
I have a problem. Controls is put inside form but don't appear when debug? I don't know what happened but. I put a Checkbox control and a button control named Button 3 on the my existing form. But when I debug the application. The Checkbox and Button 3 controls did not appear in the form? I try to put a message box which will be activate when Button 3 is clicked. I put a breakpoint there and I got this message. Breakpoint cannot be hit?
View 1 Replies1. I am closing the form which started the thread inside the thread. There are no errors , but Is it safe ?
2. The thread starts at click of a button . If same button is clicked again , the thread is aborted. Should the thread be made Background or foreground ? it is working either way.
my code :
Private Sub BtnOk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnOk.Click
m_Thread = New System.Threading.Thread(AddressOf MyFunction)
m_Thread.IsBackground = True
[code]....
I have a FPS game i built using FPS creator that works fine but i want to run it inside my form. Like so for example:
View 2 Repliesbut is there a WINDOW that is moveable..... and can be minimized inside the form....
View 3 RepliesI have multiple forms within a form, typically up to 16, and I want these "inside" forms to snap all edges between eachother or the parent form edges, when a form is resized or moved, and edge comes within x pixels of any other edge.How should I approach this? What I can think of is to raise an event on the form that is moved/resized which calls a parent form handler method that loops through all the forms, check the edges and then keeps fixing (repositioning) the active form if any of its edges is close to any other form edge
View 3 RepliesI have use vb.net 2005, I open a folder withof command line usind (explorer.exe ,/e,/root, D:ew,folder) but my fodler name have
View 2 RepliesI'am trying to add files inside a folder but i get this error
The directory name is invalid.
My Code
Dim NUMc As Integer
NUMc = System.IO.Directory.GetFiles(foundFile).Length
ListBox3.Items.Add(NUMc)
i am developing a vb.net application my question is how can i access a folder inside my application ?? for example i created a folder Myfold where i store some .doc files and i want to read them from my code.
View 1 RepliesI am trying to get my vb.net application to look inside a folder on the web server and then let me know whether there are files in there or if the folder is empty.
View 3 RepliesCode the count all the images inside the folder regarlest of different format.
View 5 RepliesI want to create a destination path having folders inside the folder.
[Code]...