VS 2008 FolderBrowserDialog Alternative In Web Application?

Apr 20, 2012

On our intranet website, I need to give option to user to specify the location where they would like to save files. The files would be generated by a background process. Is there a way user can specify the location? I can not use FileUpload since that requires file to be specified. I notice that FolderBrowserDialog is for clientserver vb.net app and not asp.net.

View 2 Replies


ADVERTISEMENT

VS 2008 - Alternative To The MdiWindowListItem For Window Navigation In An MDI Application

Aug 9, 2010

I've made an alternative to the MdiWindowListItem for window navigation in an MDI application. It consists of each window being added as a toolstripbutton to a toolbar, similarly to the Windows taskbar. I don't use any of the mechanics I should probably use, such as for loops catching each child window etc etc. Instead I look at window titles and do a lot of string manipulation and using counters etc.

I'd like to get rid of my method and use something a little more technical. I'd like to have the same effect, but to be able to add toolbar buttons relative to the MDI children as opposed to looking at window titles and such, because I've also got a plugin system that allows users to create their own windows and add them as mdi children. But, if a plugin is added, it doesn't get added to my toolbar taskbar thing because the titles are all user defined and I cannot control them.

So, basically, I want something exactly like the menubar's MdiWindowListItem feature, but using my toolbar idea. I want all MDI children to show up in it, including the 3rd party windows.

View 1 Replies

FolderBrowserDialog.RootFolder Set To Application.StartUpPath?

Oct 9, 2009

I have a FolderBrowserDialog and I want to set the root folder to the folder that the application is sitting in.I do not know in advance where the user has put the application, but I can find that (I think) by using Application.StartUpPathHow do I set the FolderBrowserDialog.RootFolder to the Application.StartUpPath ??

View 4 Replies

VS 2008 FolderBrowserDialog?

Sep 7, 2009

Is there a way to define your own root folder instead of using the predefined ones?

View 5 Replies

Application.DoEvents Alternative?

Jun 6, 2011

Any good alternative to using DoEvents in VB.NET

View 6 Replies

VS 2008 Folderbrowserdialog.selectedpath With Variable?

Jan 17, 2011

i have a textbox1 with the following text c:xxxy how can i open Folderbrowserdialog.selectedpath with a variable,i mean:when i try to do Folderbrowserdialog.selectedpath=textbox1.text, this displays a error.

View 1 Replies

VS 2008 Starting Directory For FolderBrowserDialog?

Mar 19, 2009

How can i set the starting directory for a FolderBrowserDialog.showDialog() ??

View 4 Replies

VS 2008 Working With FolderBrowserDialog Object?

Jul 22, 2010

I have problem working with FolderBrowserDialog object in VISUAL BASIC. It only returns folders and it does not return shortcuts. Is there any way that when I use this object I would be able to see let's say shortcuts that I have on desktop?

View 1 Replies

VS 2008 Copying A File And Saves It Using FolderBrowserDialog?

Feb 19, 2012

how to copy a file, for example a file from C:imagesample.bmp and saves it using a folderbrowserdialog that automatically save the same filename.

View 3 Replies

VS 2008 Way To Create FolderBrowserDialog IN Form Not A Pop-up Dialog

Jun 29, 2009

I was wondering if there is any way to create a FolderBrowserDialog IN the form, not a pop-up dialog.I was looking around and I found that I can do this by the extension provider.I can inherit the FolderBrowserDialog since it's not a control.[code]

View 5 Replies

VB 2005 - Alternative Choice Other Than Publish The Application By Click Once?

Apr 15, 2008

Can VB 2005 have alternative choice other than publish the application by click once.

I mean to say many installation softwares has choice like "click next"------------>"click next"------------------->"click next"----------->Finish.

And also ask where to install the application(Location to Browse).

View 3 Replies

VS 2008 - FolderBrowserDialog - Choose A Folder That Carries Multiple MP3 Files

Apr 19, 2010

I'm not sure how to use it, And for some reason I couldn't find it on MSDN, Unless I looked it up wrong, But I am making an MP3 Player, And I'd like to choose a folder that carries multiple MP3 files, And by clicking on it, It will bring the MP3 files into the windows media player component I am using and add the file names into a listbox.

View 3 Replies

VS 2008 Need A Database Or Alternative?

Feb 27, 2010

Im currently developing an app, in which there is a list box which will contain between 200 and 3000 items. These items are loaded into the list box from a .txt file. Now on the same form i have Picture boxes x 6 Textboxes x 5..The contents of which changes with each list item selected, and to do this i have the code attached to the list box, heres a snippet of the [code] but at the moment with 178 items on the list the total code is pretty big, and i get the feeling it would run faster if loaded dynamically.Am i right in thinking that? Especially when the list has 3000 items, thats alot of code to have attached to a listbox.And how do i go about making the code dynamic, im looking round the forum and seeing ADO database mentioned alot and that seems to be the answer at least for the text fields, would that also work for the picture box fields?

View 1 Replies

VS 2008 Sendkeys Alternative?

Nov 10, 2009

hey been looking around for an example of Sendmessege to send keys, but all you find is the basic notepad example, can anyone please show me the way to use Sendmessege to sendkeystrokes to any application (i have the hwnd)

View 3 Replies

VS 2008 Alternative To A 2 Dimensionable Array?

Jul 24, 2009

I'm writing an app that reads zip files from a folder and then displays them in a listbox. As a user clicks on one of the zip files in the list they can see a particular file that is located inside the zip archive in a textbox. The way I'm doing this now is to read the files from the folder and store the zip file name and the file associated with it into a two dimensional array. Kind of like this:

Dim a_files(500, 1) a_files(0,0) = name of zip file in folder a_files(0,1) = name of a particular file in the zip file The problem is that there may be more than 500 files so the array has to be scalable. I know you can use 'ReDim Preserve' to resize the right element on the fly, but I need to resize the left element. I've looked at collections, but I can't see an example where they can be multidimensional. Does someone know of an alternative way to store these values that would have the flexibility I need?

View 19 Replies

VS 2008 Which Controls To Use For Db View, Asp Alternative

Aug 8, 2009

I have a vb application ive been working on and its pretty much complete. I posted in the asp section but we couldn't get it figured out there so im reverting back to vb so looking for some help.I have a vb.net app I created and I have an internet browser embedded in it calling an asp page. the asp page is just a simple file that searches an access database. I used the asp page because I wanted to display the results with graphics and tables so I used html for that.Everything technically works except I am running it on a local intranet and the asp file is located on a server that is REALLY slow so it is taking 20-30 seconds to get my results. so, my question is, Are there any other options or ways I can do the search within the vb app itself so everything stays local and I don't have any speed issues. I can't install IIS on the local computer because the IT department is strict unfortunately.I don't HAVE to use "html" but I would like it to look nice with graphics and html was the only way I knew how to do that.

View 6 Replies

VS 2008 Write Data To Resource Or Alternative?

Oct 22, 2010

Well this listbox contains sensitive data not very important but i dont want the end user to be able to see what the listbox contains, therefore i have hidden the listbox But my question is how do i store this information i could easily write it to a text file i know but the user could locate the text file. So i attempted to create my text file as a resource and that failed as i can read from it i cant write to it. More simplistic question. I have data i need to save from a listbox but if i save it as a text file the user could still access it and i dont want the user to be able to acesss the file i would like it to be internal because i also dont want the user to be able to delete the file?

View 7 Replies

.net - Fileopen Through The FolderBrowserDialog?

Jun 16, 2010

This is what i got now...

FolderBrowserDialog1.ShowDialog()
TextBox1.Text = FolderBrowserDialog1.SelectedPath
If FolderBrowserDialog1.SelectedPath = Nothing = True Then MsgBox("Select your folder..")
If FolderBrowserDialog1.SelectedPath = Nothing = True Then Button1.Enabled = False
If FolderBrowserDialog1.SelectedPath = Nothing = False Then Button1.Enabled = True
End Sub

[Code]...

View 1 Replies

Set The Rootfolder Of A FolderBrowserDialog Box?

Apr 1, 2009

Do anyone know if its possible to set the rootfolder of a FolderBrowserDialog box to only show my network places (xp) / Network (Vista). It's not available as a Environment.SpecialFolder in vb.net.

like the dialog you get when selecting map network drive -> Browse in windows explorer, see screenshot below.

View 6 Replies

SpecialFolder In FolderBrowserDialog?

Aug 1, 2008

is there away to create a new environment.specialfolder to a self created folder? So I can use this as a rootfolder in the FolderBrowserDialog?

View 13 Replies

.net - Error After Displaying A FolderBrowserDialog

Jun 12, 2009

I'm working a backup program and to determine the destination location, I give them the choice to type it in, or browse to it. Lately, I've been getting this error after they browse to it using the FolderBrowserDialog to set the location and the containing form is closed:

Managed Debugging Assistant 'DisconnectedContext' has detected a problem in 'C:UsersJFVDocumentsVisual Studio 2008Projects[backup program]in[backup].exe'. Additional Information: Context 0x792960' is disconnected. Releasing the interfaces from the current context (context 0x7927f0).This may cause corruption or data loss. ensure that all contexts/apartments stay alive until the application is completely done with the RuntimeCallableWrappers that represent COM components that live inside them.

View 1 Replies

Can't Move To Outside Of RootFolder In FolderBrowserDialog

Nov 11, 2011

I'm using FolderBrowserDialog. I want to setup the RootFolder as

[Code]...

View 2 Replies

Create A New Folder With Folderbrowserdialog?

Dec 29, 2010

How to create a subfolder to FolderBrowserDialog1.SelectedPath?

View 2 Replies

Folderbrowserdialog No Launching And Closing App?

Apr 2, 2012

my folder dialog windows isnt opening. its odd cause its been working for a long time.app closes soon as i click on my button

'Open Folder Dialog
Dim folderDlg As New System.Windows.Forms.FolderBrowserDialog
Dim selectedFolder As String

[code]....

View 7 Replies

How To Change FolderBrowserDialog Size

May 31, 2010

I am trying to change the size of FolderBrowserDialog, but I can't find any command that can do that.

View 2 Replies

Unable To Download FolderBrowserDialog?

Jun 30, 2007

I have Visual Studio.NET 2002 with SP1.However it does not have the FolderBrowserDialog component installed for some reason.Is there anywhere I can download this component?

View 4 Replies

VS 2005 FolderBrowserDialog With A UNC Path?

Sep 24, 2009

I have a program where the users generally use UNC paths. For a textbox where they type in a new path to work with, I'd like to be able to make it easy for them by having a button to fire off a FolderBrowserDialog so they can just navigate to it. Alas, I cannot seem to feed it a UNC path as a starting point.

View 4 Replies

VS 2010 [How To]Reload FolderBrowserDialog

Feb 21, 2010

What do I do that I can repeat this function?When selecting a folder, the second time. The program displays an error.However, once I choose a folder and correctly, it displays.After re-election, has already spoiled

Private Sub LoadInfoFromSYSToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LoadInfoFromSYSToolStripMenuItem.Click
Me.regBox1.Text = ""

[code]....

View 8 Replies

FolderBrowserDialog To Browse Sharepoint Server?

Jan 24, 2011

i need to browser the folder in Folderbrowser dialog how to done this?

View 3 Replies

Move File From One Destination To Another Using Folderbrowserdialog?

Apr 5, 2011

I want to copy rarreg.key to the folder specified. Here's what I got so far. It compiles fine, but I keep getting an unhandled exeption has occurred in your application... And get "Empty file name is not legal. Parameter name: sourceFileName.".[code]...

View 7 Replies







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