Accidentally Excluded Something, Now No Editor?
Apr 28, 2012
I accidentally excluded something from my project (by right clicking and "Exclude from project", but I don't remember what) and now when I try to open form1.vb design I get this error message:
There is no editor avalable for <filename> Make sure the application for the filetype (.vb) is installed.
View 1 Replies
ADVERTISEMENT
Jul 4, 2011
I have a windows application contains setup project also when I worked on visual studion 2008 it works fine but when I moved my code to vs 2010 it shows following error in building msado28.tlb should be excluded because its source file C:program filescommon filessystemadomsado28 tlb is under windows system file protection..if i exclude the file installer does not work( although it is created but when I click on it it gives error)
View 3 Replies
Jun 29, 2009
When I exclude a block using #if #endif in VB.Net there is no visual evidence that the block has actually been excluded unless I indent the block and it does not return to the left margin. I checked the active settings for Fonts and the Excluded Code colorization is identical to that of C# and C++. However, the block is not colorized at all. VB clearly knows the block has been excluded, but I cannot figure out how to get the block highlighted as it is in C# and C++.
View 3 Replies
Aug 23, 2009
I decided to get rid of some of the junk in my computer, so I selected all the .tmp files and deleted (nearly) all of them. I then emptied the recycle bin... Then I set to work on trying to get some code to work (in an excel 2007 macro enabled workbook).
I now have two problems: 1) excel will not let me record a macro and 2) when I run one sub routine, excel tries to run every sub routine associated with the workbook.
other than removing and re-loading Office 2007? I'll try logging off and then logging on again - if that works, I'll let you know.
View 2 Replies
Dec 28, 2010
I accidentally deleted a tab in the design mode. I still have an old form in which the tab is present. But it is an old copy from the present project, hence is it not in the same project. What can I do best to get it back? By the way, Visual studio could better say some warning before they do that. And contr-z did not get all the content back. May-be I should have hit that button a few times more before I pressed save. I dont know.
View 5 Replies
Mar 22, 2011
I dont have any back up for that form. Is there any other way to recover that form in vb 2008?
View 3 Replies
Aug 21, 2007
I have a setup project in my solution. There are interop dependencies on msADOX and oledb32. On my Vista build machine these dependencies don't show up in the "Detected Dependencies" list (only the two interop assemblies), and my solution builds just fine.
On the production build machine (XP), the build fails with two errors: ERROR: 'oledb32.dll' should be excluded because its source file 'C:Program FilesCommon Filessystemole dboledb32.dll' is under Windows System File Protection.
[Code]...
View 3 Replies
Jan 24, 2010
1.Ihave to produce an application that enables the user to enter an integer rate of pay and an integer nr. of hours. On clicking a button the application should display rhe pay due. Amend the application:rate of pay to be entered as a real number;Employees are taxed at emergency rate of 40%. Amend to display GrossPay and NetPay.
2.Ensure that the operator cannot accidentally enter data in output areas!!!
The application is to be amended so thet the employees are paid overtime at time and a half for working more than 8 hours in any one session and all data enter by user should be checked to ensure that it is in a valid format and that the values are acceptable. [code]
View 2 Replies
Jun 14, 2006
I get the error when I try to uninstall VS.Net 2003.Setup is unable to determine a valid ordering for installation. See theerror log for further details.I have the disks and tried reinstalling/ repairing it and that did not work. And I cannot get to the error log as it says. I only used VS.net for school and would like to uninstall it from my computer. Does anyone know what to do after you tried to uninstall it out of order, and removedFramework 1.1 first?
View 12 Replies
Dec 26, 2009
is the algorithm for VB editor released anywhere? because i'm trying to create my own editor that gives various options like Linking and self defined array functions (see below) such that one edit can update several others in various places, but i do still wish to have the auto formatting VB editor provides us with.an example of a self defined array function (count):we can transform this:
Public Class test
Private Shared number_of_methods As Integer = 2
Public Function get_number_of_methods_juz_an_example() As Integer
Return number_of_methods
[code]....
well of course instead of the code it would be just click and select (i wrote out the code in <> just to show what's happening)
View 5 Replies
Oct 7, 2011
I created a web form in .net. The form need to use WYSIWYG editor. So, I have decided to use CK editor. Now, I have gotten a problem that the CK editor lets to use javascript in the textarea. I don't want to let this. How could I do that?
View 1 Replies
Jan 31, 2012
How can i get visio like editor in vb.net. so that end user can create or move controls, like text box,labels & combo box. I need this for reporting purpose where user can place the controls as he wanted.
View 2 Replies
Jul 21, 2009
How can i make something like an editor, lets say word editor, how can i get it to highlite wrong words? and color words like "thank you" or something?
[code...]
View 5 Replies
Apr 4, 2012
I'm a beginner so please try to explain things simply
Public Class Form1
Private Sub RichTextBox1_TextChanged(sender As System.Object, e As System.EventArgs) Handles RichTextBox1.TextChanged
Form2.WebBrowser1.DocumentText = Me.RichTextBox1.Text
End Sub
Private Sub PreviewToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles PreviewToolStripMenuItem.Click
Form2.Show()
End Sub
Private Sub OpenToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles OpenToolStripMenuItem.Click
OpenFileDialog1.Filter = "All Files(*) | *"
OpenFileDialog1.ShowDialog()
RichTextBox1.LoadFile(OpenFileDialog1.FileName, RichTextBoxStreamType.PlainText)
End Sub
Private Sub SaveToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles SaveToolStripMenuItem.Click
SaveFileDialog1.Filter = "All Files(*) | *"
SaveFileDialog1.ShowDialog()
RichTextBox1.SaveFile(SaveFileDialog1.FileName, RichTextBoxStreamType.PlainText)
End Sub
End Class
Say for instance I put this into the rich text box
HTML
<html>
<head>
</head>
<body>
<script type="text/javascript">
</script>
</body>
</html>
When I type betwenn the script tags, I get a warning from the program.
An error has occurred in the script of this program.
Does anyone know how to help me?
View 5 Replies
Jun 25, 2008
I am not sure why but recently i just launch my vb2003 and got this error.. no editor for .aspx anyone know how to solve it ?
View 2 Replies
Aug 23, 2011
i want to make an hex editor in vb or C++ in which i can edit the bytes
also i want to see that if a wrong byte is inserted or deleted a message or a warning should be displayed and file wont be reconstructed again..
View 17 Replies
Sep 25, 2011
I want to make an iso editor. ISO is a game or program file. In this case it is a game. I want to be able to view partitions and patch them so people can modify games. Im using VB express basic 2010.
View 4 Replies
May 21, 2011
VB express.yesterday my computer started squawking about the project that I was running in debug being edited outside of the editor, and did I want to reload.The message box gave me four choices: Yes, Yes to All,No,and No to All.It started doing it when I had a new project with nothing but a multiline text box that I was trying to use to display the numbers in a for next loop there was practically nothing there that I did.It squawked about that for projects that I ran many times before, and haven't edited at all recently.It kept coming back repeatedly.So far as I know, I have edited nothing outside the editor.What would I be reloading?
View 8 Replies
Apr 13, 2010
There is no editor available for '<filename>'.Make sure the application for the file type (.vb) is installed.I got this message after I updated a VB08 project to VB10. I tried to open a form when this message was shown. It happens to every form in the group (but not standard classes).
View 1 Replies
Oct 31, 2009
I just cannot work this out so is it different in C# for VB in VS. Lets say you have added a control (does not matter what control) to a form, go to the 'View Code' of the form. In VB at the top of the source window below the Tabs of your project you see on the left a Class Name combobox (Type in C#) in VB you can select the control you just added, now in the right Members Name combobox (Members in C#) in vb i can select a member I want to add lets say Click event, this will be added to the project but in C# it just cannot be done?
The reason for this is that I have a Usercontrol that Shadows/New delegate thingy in C# TextChanged event I can easily Select this member in VB but not in C# do I have to add the event manually e.g. [Code] In VB I get a Handles event, Any ideas?
View 5 Replies
Oct 3, 2010
how can i add the tinyMCE editor in my vb.net desktop application?
View 2 Replies
Feb 9, 2012
I've built a basic editor which have code auto-completion feature and also shows parameter list. Now I want to add highlight matching bracket feature. I've no idea on how to do this !
Update:I know some basic algorithm to find the matching bracket, but don't know how to highlight it ! [to change the color or making it bold of the matching bracket]. I'm using multi-line textbox for this issue.
View 1 Replies
Apr 23, 2011
I created a Script Editor in a Windows Application using a RichTextbox and Regex for adding the colors for the coding. However it is not close to the Real VB editor. Is there some real good examples out there of how to build one or some free downloads?
View 1 Replies
May 27, 2011
I need to add in a WYSIWYG control into a .NET form. I found this one from SpiceLogic on several sites and was wondering if this is a decent library to use?If anyone has any additional input, I also would like to know of any other decent alternatives, both free and non-free.
View 3 Replies
Sep 23, 2011
I created a asp.net web application and then I downloaded ckeditor. And I extracted my application directory this editor folder. And I added dll of ckeditor to reference of my application. I registered in my web page.[code]...
View 1 Replies
Dec 4, 2009
I'm using VS2008, writing an app in VB.Net (3.5 framework), and I have a custom control which recieves a collection (each item in the collection has an image, and 2 text fields).When populating this at design time, it's nice and easy to do either in code, or even better through the very useful "Collection Editor" (in terms of user friendliness, at least).What I'd like to do is give my end users a similar Collection Editor interface, on my main form, to be able to add to and remove from this collection in a similar way to how it's done in the IDE. This is new territory for me, and I really don't know how to achieve this
View 3 Replies
Jul 14, 2011
I am working on this project and I am running into a few problems. Well Nothing is working but when you want to open a file.This is the project I have to do.My project is allow the user to create a new HTML. Open an existing HTML file from your hard drive(which I don't understand that one). Save an HTML file.Also aloud the user to to load HTML file (source only ) From the internet, when the user selects this feature provide a text box and a button to enter the url. I know how to do a textbox and a button. Include an about me page with your name.
Here is my code.
Imports System.IO
Imports System.Net
Public Class Form1
[code]....
View 6 Replies
May 2, 2011
I want to create my own pocket editor like WPE because i want to program it.(To send special messages to the game servers when my program receives something.)
View 4 Replies
Jan 22, 2010
i want to develop a notepad editor...in VB 6.....
View 1 Replies
Oct 8, 2010
I've programmed a text editor and controlled through its sound as a program, but I want to distinguish it from other software
View 5 Replies