VS 2008 SAVE Menu In Wordpad ?

Jun 1, 2009

Public Class Form1
Dim ISsaved As Boolean
Dim Fpath As String

[Code]....

source code above is a part of my wordpad's source code. in my wordpad,why SAVE menu(SaveToolStripMenu) is function like a SAVE AS menu?

for example:i save a RTF file in my PC.and then i open it with my wordpad and edit that file.when i click SAVE menu,why this wordpad command me to save this file?I think this file is saved before.

View 3 Replies


ADVERTISEMENT

Save A File As Wordpad Or Notepad?

Apr 15, 2010

i need to start my project in vb by open a file in wordpad(named aaa).after do some operation onto the file,i have to save my file as text doc (named bbb).When i open my saved file in wordpad,it will show the pattern of data in circle pattern.but when i open in notepad,the file doesnt show the circle patten as i desired.how can i write the codes in vb so that the opened file(bbb) will shows data in circle pattern in both wordpad and notepad?Do i need to edit the part of savefile.filter in my codes?

Dim savefile As New SaveFileDialog
savefile.FileName = ""
savefile.Filter = "Text files(*.txt)|*.txt|File(*)|*|All Files(*.*)|*.*)"
savefile.Title = "SAVE FILE."

[code]....

View 2 Replies

VS 2008 : Assign Ctrl+s To Automatically Save The Labels Text Once Pressed Instead Of Going Through A Menu To Choose Save?

Jan 20, 2011

so i have a quite huge program. but lets say i have one label. and i want to save that. i have the code and everything for saving the text of the label. now i want to assign ctrl+s to automatically save the labels text once pressed instead of going through a menu to choose save.this is like a regular texteditor where u press ctrl+s and it saves.

ive used this

If (e.KeyCode = e.Control & Keys.S) Then
MessageBox.Show("Ctrl+S pressed")
End If
and

[code]....

but it doesn't do anything once pressed.im also using the keydown declaration for the form.

View 4 Replies

[2008] Using WordPad As An Outside RTF Editor?

Jan 24, 2009

The project I'm developing at the moment requires RTF (rich text format) support and a full WUSIYUG editor, however I am very short on time so I'd like to consider an alternative. Instead of designing a new interface and creating buttons and toolbars and everything from scratch, I'd like to use WordPad to create the RTF documents and a RichTextBox to show them in-application.My idea was as follows:When the user needs to create a new document (once the document has been created, it will remain read-only), the application would launch WordPad via Process.Start and then it will wait until it exits. I think I can manage it up to here.Next, the user would save the file and the file's location should be sent to the application. If possible, I'd like to be able to retrieve the saved file's location automatically via code, or at least choose the preferred path (the directory which appears first when you save a file).

If retrieval of the saved file's location is not possible, then I was considering using SetCurrentDirectory to set the preferred path to a certain folder, instructing the user to save the file there under any name and then comparing the files in that folder with a previously created list to see which file was added. For obvious reasons, I'd prefer this method to stay a last resort

View 11 Replies

VS 2008 Menu Save In This Program?

May 21, 2009

Public Class Form1
Dim ISsaved As Boolean
Dim Fpath As String
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
OpenFileDialog1.Title = "Open File RTF"

[code]....

source above is parts of my source code.i'm learning to make a simple wordpad.when i edit some text in RTF file and then i choose SAVE,why command to save my file to computer appear(like SAVE AS in Microsoft Word)? i think i have saved my file in computer before that.

View 1 Replies

Writing The Save Option - Code Up The Save Menu Option So That It Updates The Current Document?

Jun 10, 2010

I am writing a text editor program and I have written the new, open, save as, exit menu items but I am struggling with writing the save option.Now I have created the menu itself (well vb did, I just used insert standard items) but how do I code up the save menu option so that it updates the current document or if the documnt has not yet been saved bring up the save file dialog.Here is the code I have so far

Public Class Main
Private Sub NewToolStripButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewToolStripButton.Click, NewToolStripMenuItem.Click[code]....

I know I have some finishing touches such as messages and error handling and stuff but at the moment I want to get all the basics working,I think the save menu option is all I am struggling with at the moment.

View 1 Replies

Exact Inches With A Ruler (like On WordPad)?

Oct 3, 2011

With the different screen resolutions out there, how do the rulers in WordPad, OpenOffice.org Writer, Microsoft Word, etc. assure exact inches in printing?

View 2 Replies

Make Application Like NotePad , WordPad?

Nov 20, 2009

Can I Make Application Like NotePad , WordPad It Mean , I want to open Any Text File with Right Click Context Menu Option "Open With"and i want to set my Program for Textfile as Default And i want to drag and Drop Textfile In RichTextBox, can My application Show Text of textfile ?

View 1 Replies

Put The Content Of The Textbox To The Wordpad And Notepad?

Jul 30, 2007

How can I put the content of the Textbox to the wordpad and notepad?

View 5 Replies

How To Save Sites Into App Favourite Menu

Aug 5, 2011

I made a web browser and I wanna to add to it the favourite menu feature how?

View 3 Replies

Save Dialog Coding - Set Up Along With The Menu Bar ?

Apr 10, 2009

I've got everything set up along with the menu bar etc. Could anyone show/explain to me the code for the save dialog?

View 3 Replies

Using Settings Save With Menu Strip?

Feb 21, 2010

I have coded my application to run at startup now this is done by clicking the "run at startup" submenu from the menu strip I'm using when it's click the submenu auto checks and adds a key in the registry to make the form load at startup now I want to make the form "remember" the checked state of the menu even after form restarts I read somewhere that I can do that with the my.settings code

Private Sub SettingsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SettingsToolStripMenuItem.Click
If SettingsToolStripMenuItem.CheckState = CheckState.Unchecked Then

[Code].....

View 3 Replies

VS 2010 Create Wordpad File And Streamwriter

Jun 4, 2011

I have a subroutine that needs to accomplish the following things:

1. Open wordpad (wordpad.exe) - so the user can see the file being written to for printing purposes.

2. Create wordpad file (Sample.wri)

3. Write various text to Sample.wri (in the wordpad window that opened) using Streamwriter. Again, this is for printing purposes.

The code below is the start of the subroutine. As it is written, Wordpad does start, and Sample.wri is created. But the streamwriter DOES NOT write the "does this work?" text to the file created, nor does it display in the window that opened when wordpad process started. I'm new to using streamwriter so I'm sure I've overlooked something simple. The start of my subroutine is below:

[Code]...

View 2 Replies

.net - Save Context Menu Items In My.settings?

Jan 12, 2010

How can I store the items in a context menu strip in the Settings so they are in the context menu when the application is next started?

Or is there a better way than using settings? (they are recently opened files in the cms)

View 2 Replies

Cant Get The Save As Menu Option To Work Correctly?

Aug 5, 2010

I have written an MDI text editor, its almost complete, but I cant get the save as menu option to work correctly.

HTML
'This sub routine controls the save as menu option
Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles[code].......

So whats happening is that it opens the dialog ok, saves the document to my chosen location correctly, but opens a new document and gives the new document my chosen file name and leaves my saved document with the file name New Document.But when I close all the open screens and then re-open my saved document its all as it should be.

View 1 Replies

Mdi Parent Menu Save Child Text?

Jun 9, 2011

Ok So I am trying to save text from a textbox to a rtf file. The Saves Text would come from the active mdi Child. However I can not figure out how to Save using active child just calling the actual form name. Below is my code so far.

Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles SaveAsToolStripMenuItem.Click
Try

[code].....

View 4 Replies

Save Menu Option Sytax Error?

Aug 1, 2010

I have written a sub routine for a Save>Menu option for a MDI Text Editor, see my code below

Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click
Dim f As Form2

[Code]....

Now if I take out the ( I get yet another error which states

"Argument not specified for perameter "File" of public sub WriteAllText(File as string, text as string, append as boolean)

All I want is when the user clicks the save menu item the document either saves the changes made to the current document or the save as routine is involked.

View 4 Replies

How To View Wordpad Document Inside Forms Panel

Oct 25, 2009

Iam using vb.net 2008.I have richtextbox. I save as wordpad format [rtf] file. Now I need to view it in inside the panel of my form.[code..]

View 1 Replies

Sub Routine For A Save>Menu Option For A MDI Text Editor?

Mar 11, 2010

i have written a sub routine for a Save>Menu option for a MDI Text Editor, Please see my code below

Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click
Dim f As Form2
If f.Text = "Text Editor V.2 - New Document" Then

[Code]...

View 1 Replies

Delaying A Form Opening Until Wordpad Is Closed/loses Focus?

Jan 13, 2010

I have a question regarding waiting for closing a window or changing focus back to my app. What i have is an app that creates a few tables, that then puts the tables into a temp file that wordpad opens for the user to check they are correct, this is where i need help, i would like to now wordpad is open wait until the user closes wordpad or changes the focus away from wordpad until i open the next form which is responsible for using the tables and converting them into xml.

Which event should i look at using that fires when a program is exited or gets focus?

View 1 Replies

FAQ Item: Save An Existing Project To Different Local Location Via IDE Menu?

Jun 20, 2010

How do I save an existing project to different local location via IDE menu?

View 1 Replies

Way To Access Wordpad Programmatically So Can Set Attributes Like Font / Bold / Text Justify

Sep 1, 2011

Is there a way to access wordpad programmatically so I can set attributes like font, bold, text justify, printer orientation etc etc ? So far, I'm able to launch wordpad from withing VB6 and work with its features.

View 4 Replies

VS 2008 - Change The Hover Color Of Menu Items And Dropdown Menu Items?

Feb 18, 2011

I have currently changed the color of background Menustrip using this code

[Code]...

How do i change the Hover color of menu items and dropdown menu items to orange including the background color which holds icons in menustrip dropdown.....

View 5 Replies

VS 2008 MENU Bar - Don't Have The "Step Into Option" From My DEBUG Menu

Aug 7, 2009

Two(2) Things. I don't have the "Clickonce Option" when I select BUILD for the menu bar. I also don't have the "Step Into Option" from my DEBUG menu. Do I have a problem? Or do I need to turn something on?

View 4 Replies

"exit" Option In Menu Strip Remind The User To Save Their Settings

Jun 24, 2010

I'm just trying to have my "exit" option in my menu strip remind the user to save their settings...If they haven't, the click "no" and save their stuff, and then exit. I can't get the form to close if I hit "yes."

[Code]...

View 4 Replies

[2008] Menu Strip - When A User Clicks On "Print" In The Menu Strip On The Keyboard Should Automatically Press "Ctrl+P"

Oct 25, 2008

I am totally new to VB and I'd like to know, for example, when a user clicks on "Print" in the menu strip on the keyboard should automatically press "Ctrl+P", because the original print dialog, and the WebBorwser print dialog is toootaly different.

View 11 Replies

VB 2008 Save Location - Images Will Save To The Folder That Selected In The Textbox1.text From The Folderbrowser

Oct 17, 2009

I'm trying to make it so the the images will save to the folder that you selected in the textbox1.text from the folderbrowser this is the code's I have tried

[Code]...

View 1 Replies

Save ListBox1.Items To Txt File Using Save As Option VB 2008 EE?

Aug 1, 2009

I have researched the net, youtube, and the msdn DB, and still can not find the working answer I am looking for. I would like someone to show me how you would save the contents of "Listbox1" to a .txt file using the "Save As" Option. I know how to hardcode a savepoint in, but since there will be multiple users I would like the option to be up to the end-user.

View 4 Replies

IDE :: "save As..." There Is No Command In The File Menu?

Nov 27, 2009

I'm using VB2008 express, and I want to save my project: "VBprogram_V1" as "VBprogram_V2" and then make changes to the Version 2 program. But there is no command in the File menu to do it. If I just copy my project folder to a new folder and give it a different name, vb gives me a headache with heaps of errors I don't understand.Maybe "Save as..." is in the commercial versions of VB?

View 3 Replies

VS 2008 Make A Save Button To Save To A New Text Fil?

Nov 4, 2010

I want to make a save button to save to a new text file with the data in the text box if modified. Currently the program just opens Data.txt and displays a sentence in the text box.

Public Class frmAddress
Private Sub btnDisplay_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplay.Click

[Code]....

View 2 Replies







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