google maps location Programming Software Development by no123 … As System.Windows.RoutedEventArgs) Handles SaveButton.Click saveDialog.ShowDialog() End Sub ' RoadmapToggleButton Checked event …= "(*.png)|*.png" End With AddHandler saveDialog.FileOk, AddressOf saveDialog_FileOk End Sub Private Sub MinimizeButton_Click(… Hey check out my prog. It has an error can u find it? Programming Software Development by buggytoast … JOptionPane.ERROR_MESSAGE); } } private File chooseFile(boolean saveDialog) { JFileChooser fileChooser = new JFileChooser(); fileChooser.setFileSelectionMode(…then return null int chooserDialogReturn; if (saveDialog) chooserDialogReturn = fileChooser.showSaveDialog(this); … Source Code that don't work? Programming Software Development by buggytoast … JOptionPane.ERROR_MESSAGE); } } private File chooseFile(boolean saveDialog) { JFileChooser fileChooser = new JFileChooser(); fileChooser.setFileSelectionMode(…then return null int chooserDialogReturn; if (saveDialog) chooserDialogReturn = fileChooser.showSaveDialog(this); … Borland builder c++ 5.0 in XP Programming Software Development by yon kon …lt;TChild*>(ActiveMDIChild); if (!child) return; if (SaveDialog->Execute()) { child->Image->Picture->SaveToFile…(SaveDialog->FileName); } } //--------------------------------------------------------------------------- void __fastcall TMainForm::Tile1Click(TObject *Sender) { … I dont Understand Programming Software Development by Dcurvez … is implement SAVE into my menustrip through the saveDialog. I have in my SaveDialog Properties the filters: (*.txt)|*.txt|All files (*.*)|*.* The… Saving the array of structures Programming Software Development by En1ro … want to save an array to one file without using SaveDialog / OpenDialog( i can't choose file from which i could… Creating a New File Problems Programming Software Development by baltimoreharps … data to it later). I was trying to use the SaveDialog but am getting "Invalid Path Errors". Here's… load functions in delphi Programming Software Development by revski … lines together which are saved to a text document when savedialog is executed. when i add the load function i wish… Album Maker by me (i neeed help) Programming Software Development by IDC_Sharp … i need more help with the SaveDilog, its open the SaveDialog but its not save the ALBUM as Exe program// i… Tabbed Word Programming Software Development by VB 2012 How can you get to only save all the modified tabs By save i mean save as a text file or open your own savedialog < example :) Saving Data Problem Programming Software Development by virusisfound … then It alway overwite the data on previous data. In Savedialog Box when I spcify the location It create a Excel… VB6 Save Dialog Programming Software Development by dmatos … save a file i get the following error in my SaveDialog window: The bold line is where the error occurs, says… Saving a csv Programming Software Development by Mike Askew … is how do i get the filepath selected from a savedialog and pass it through to the method in the class… How to save file in at a determined location Programming Software Development by gogs85 How to each file that is saved (savedialog) to direction, example : C:\Example\example.pdf Re: Export DataGridView to XML File without any DataSet or DataTable ... Programming Software Development by s_mostafa_h … Code : [CODE] SaveFileDialog saveDialog = new SaveFileDialog(); saveDialog.Filter = "Xml files (*.xml)|*.xml"; saveDialog.FilterIndex = 2; saveDialog.RestoreDirectory = true; saveDialog.InitialDirectory = "d:\\"… Re: Writing to and from text files. Programming Software Development by sknake Use the SaveDialog and OpenDialog. That uses the Win32 API to open up the default browsers. [code=delphi] procedure TDatabaseBackupFm.ButtonSaveFileClick(Sender: TObject); begin if SaveDialog1.Execute then Memo1.Lines.SaveToFile(SaveDialog1.FileName); [/code] The SaveDialog should be in your toolbox. Re: Saving a file using C++ Programming Software Development by meabed … the file should be saved. Otherwise, you can use the SaveDialog control to let the user specify where to save the… Re: VB6 database Help Required Programming Software Development by jireh weel theres a function to let the user select a directory, used it to where you save you database to be created. you can also use that to open the database. I think the control is Dialog, opendialog and savedialog box, thats it. why do you want to create the db during runtime? Re: Java TextArea write to text file. Programming Software Development by kevndcks … if(btnSave == null) { line of code. I did have a SaveDialog which was intializing and creating the preset file so i… Re: Syntax error - help needed! Programming Software Development by ÜnLoCo … string (a path) which you can get out of a savedialog and assign to the richtextbox tag you code would look… Re: Problem in Validation Programming Software Development by Arjun_Sarankulu … abelLazm for giving your valuable time If user cancel the savedialog [CODE]MessageBox.Show("File Processing is Cancelled Application is… Re: export to textfile Programming Software Development by sarifah n tq. but i want is the savedialog diplay to enable the user to locate the file that they want to save it.I mean it is not only at C. Re: google maps location Programming Software Development by G_Waddell Is this a class or code behind a form? Anyway for a class, create a `Sub New()` and set your `location` variable to the location you want then run your `ShowMapImage`. If it is a window just do it in the `OnLoad` event Re: Hey check out my prog. It has an error can u find it? Programming Software Development by Phaelax It'd help if you described to us whats not working. Whats the intended affect? whats it doing instead? Can you just not read the file back in, or is it that you cant get it to display? Re: Hey check out my prog. It has an error can u find it? Programming Software Development by buggytoast Sincerest apologies. What happens is that I save the file no problem however when I move to panel 2 to load the file, it fails to display. Hope that covers everything. PEace. Re: Hey check out my prog. It has an error can u find it? Programming Software Development by Nilesh Pagar Not bigger mistake..... yaar .... For the Scanner object, inside [B]OrderList(File inFile, Component c[/B]) constructor ... you are setting Delimiter to [B]"\t"[/B] just remove that line or comment that line.... and you will be aware from your nightmare..... thats it... do it fast......... just check out the definition of :… Re: Hey check out my prog. It has an error can u find it? Programming Software Development by buggytoast Hey thanks everyone...It works now :D. BTW as a side note, my teacher doesn't want me to use "vectors" cuz it shows implementation and not "mastery". I just go get the source code and change the variables right? Re: Source Code that don't work? Programming Software Development by buggytoast Sorry for double posting. I'm just going to give a more in depth thing explanation of what I said before. 1. My program works fine now. In Orderlist i originally wrote public class OrderList extends Vector<TreeData> However using vectors doesn't show me using mastery. I need to have the code for the vectors and just change … Re: Borland builder c++ 5.0 in XP Programming Software Development by kvprajapati Method SetParent() has private or protected access. Re: I dont Understand Programming Software Development by kvprajapati [b]>My form that I am trying to save has many text boxes. What I want to do is save the whole form in its entirety. [/b] You can append/concatenate string from various textboxes. [code] ...(SaveFileDialog1.FileName,TextBox1.Text & TextBox2.Text , False) [/code]