VS 2008 Can't Run A Form With Shockwave Object On?

Aug 11, 2010

ok so if i create a new form and i put in a shockwave object and debug it the form will not load and it comes up saying:

An error occurred creating the form. See Exception.InnerException for details. The error is: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))

View 1 Replies


ADVERTISEMENT

VS 2005 Add Shockwave Flash Object To Form?

Jan 4, 2011

i have added the shockwave flash object into my tool box from COM COMPONENTS, but when i add the shockwave flash object to my form so it gives and error. the error is "Failed to import the Activex Control. ensure that it is properly registered"

View 1 Replies

Add A Shockwave Flash Object To VB 2008?

Aug 17, 2009

how do we add a shockwave flash object to visual basic 2008

View 4 Replies

VS 2008 Include Shockwave Flash Object

Mar 19, 2010

I have used VB6 to create controls for robotic devices via serial/usb ports... and I already figured out the serial port.I create a graphic gauge for showing data by making a shockwave flash file for example: analog1.swf I then load and use the movie by setting the frame number. In short, 100 frames, 60% would be frame 60, etc. It looks like an analog gauge, makes the program look great.In VB6 I had the file specified as app.path & "/analog1.swf" then when I built the file I would click on the swf file when asked if there was anything else I needed to include... and it would be included in the build. I figured out most of the issues; how to include a shockwave flash object and I found a replacement for app.path... after experimenting. I found that Application.StartupPath() pointed to the DEBUG folder.so if I place the analog1. swf file in the DEBUG folder, I could do something like...[code[ when I tried to build the file in VB.NET, the SWF file wasn't in the publish/SWF1 folder I made. (I selected install from CD so everything should go into one folder as I understand it.) This means that if I distributed the install files... the person would not see the graphic, just a white box where it should be.

I read some more here on the forum... and I found out that I could do the following to add a resource...Click - Project on the toolbar.Click - Add Existing File from the drop down menu.Pick (analog1.swf) from someplace on my hard drive.Okay that got it into the program resources and I presume VB.NET will make a copy in some folder someplace... but I'm not seeing it right now. (Possibly because of the next issue...)How do I specify it in the code? if I create a shockwave object and call it "flash" what goes here.And is there anything special I need to do so that when I click BUILD and/or PUBLISH so it actually includes the SWF file in the finished product so the person installing it sees a gauge instead of a white box?

View 4 Replies

Add A Shockwave Flash Object To VB 2005?

Jul 16, 2007

how do we add a shockwave flash object to visual basic 2005 express edition without the message saying: Failed to import the active-x control. Make sure it is properly registered.

View 11 Replies

Shockwave Flash Object Doesn't Exist In COM Components?

Feb 9, 2010

I am trying to import a flush component in a Form but in Choose Items... in the list of Com Component, Shockwave Flash Object deos not exist.

View 2 Replies

VS 2010 Getting The Shockwave Flash Object To Show Up In The COM Components

Mar 22, 2012

I am having trouble getting the shockwave flash object to show up in the COM components i have installed the adobe flash player and adobe shockwave flash but the shockwave flash object is still not there.

View 2 Replies

VS 2008 Create An Object Out Of The Form?

Mar 19, 2009

In Visual basic is it possible to create an object out of the form e.g a picture that moves (windows dacer, Virtual sheep even Virtual girl (lol) )

View 6 Replies

VS 2008 How To Set Focus To An Object In A Form

Aug 6, 2009

Here is my
Clipboard.Clear()
Activate()

[code].....

View 5 Replies

VS 2008 Form Crashes If A Database Object Is On It?

May 27, 2010

I have an access database that I have imported into VB2008 through the data sources and have placed a table onto a form via drag and drop.Now whenever the form is displayed it crashes VS. I have tried deleting everything off the form, only leaving the database dataset, table binding source, table adapter and adapter manager on the form, even then it still crashes.I am running Windows 7 64bit, 2 of my peers are running Win 7 as well and are having this same issue, however the computers at our college are running Windows XP and have no problem at all with it.

View 3 Replies

VS 2008 Get A Topaz SigPlus Object On A Form?

Jun 26, 2010

I am using VB Express 2008 an am trying to figure out how to get a Topaz SigPlus object on a form. I have downloaded sample code from their site, but still do not see hoe to actually get the object on the form. In their sample, the object does NOT show up in the Toolkit.

View 2 Replies

VS 2008 Form With An Object Bound To A Datasource Closes?

Aug 17, 2010

My form closes whenever I insert an object that has a data bound in it. The object I'm trying to insert is a textbox from the data source window (drag n drop). I've checked on the database and that the table has records in it.

View 1 Replies

Convert String To Form Object To Invoke Function Using 2008?

Mar 1, 2012

In My project, i have Multiple Forms in which same Function name with return values. i like to convert the String name to Form Object and try to call the user defined function in the corresponding form from the Module I am using vb.net 2008 .

View 3 Replies

VS 2008 Drag Drop Operations Copying An Object Anywhere On Form

May 4, 2010

I am looking for an advice how to do a drag and drop copying an object anywhere on the form and also move an object around and place it where the user wants. Is that possible? Kind of something what we have in the designer of Visual Studio, we can drag and drop a label or a textbox down on the form.

View 7 Replies

Error - Creating The Form - Object Reference Not Set To An Instance Of An Object

Apr 13, 2012

I'm having this problem with my code and cannot seem to get past it although it was working fine before. The error is "An error occurred creating the form. See Exception.InnerException for details. The error is: Object reference not set to an instance of an object." The code is:

CODE:

I am trying to get information to be pulled out of a database and show in text boxes on another form (frmviewsdets). The error occurs when it gets to the line frmviewsdets.txtsnumber.Text = rdr("StudentNumber") and even when a breakpoint is applied there it just moves on to the next and so on.

I have tried to show frmviewsdets before I pull the data out of the database beut I get the same message.

View 14 Replies

Windows - Access The My.Application Object From A Form Or Control Object?

Jul 6, 2011

I have a solution with several Projects in it. There is a Windows App project (called ImportClient), and a Class Library (Import.Library). The Import.Library has functions to perform data imports (I have other applications in the solution that also need to call it). But the interactive application, I want to be able to pass in some form controls, and have it update the GUI. No problem. But, I also want to execute a DoEvents() so that the loop execution doesn't hang other interaction to the app.

So, ImportClient has a reference to Import.Library. But I can't add a reference to ImportClient to the Import.Library, because the compiler complains about circular reference, etc. I don't know how else to define the My.Application object of ImportClient as a parameter to the data function in ImportLibrary.

(I realize this is a dumb question - problem is, for this project I have a tight timeline, and haven't learned how to do the BackgroundWorker process. If you think I could pick it up quickly, I'm open to some hints about how to update the progress bar on the GUI, and how to pause / cancel the background task.)

View 1 Replies

.net - Interface Variables (ie Dim X As Iinterface = Object?) And Also If Object Is A Form?

Mar 10, 2010

I've got 3 forms that have exactly the same functions, so I decided to create an interface.

public Interface IExample
public sub Add()
Public sub Edit()

[code]....

At this point, objfrmExample is now instantiated, even though I've not done a "objfrmExpample = new [what-goes-here?] " and I'm curious as to why.I could possibly guess that because you cannot instantiate an interface variable, then vb.net automatically creates an instance. But thats just a guess. The question is , what is meant by declaring a variable of type Interface, and how does it work?

View 2 Replies

.net Windows Form, Object Reference Not Set To An Instance Of An Object?

Apr 27, 2010

I am getting this error "Object reference not set to an instance of an object" and I dont know where/how to fix it and it does not tell me where the error in the code occurs, just a pop-up windows saying the error. Here is the code on the "start up" Windows form..

[Code]...

View 6 Replies

How To Use Contextmenu In Shockwave

Oct 30, 2009

I have a shockwave on a form in my VB.NET application. Everything works great. Although, when a user right-clicks over the flash movie a flash context menu is displayed. How do I use the form contextmenu on flash??

View 1 Replies

Shockwave Loads 20 IE's?

Feb 12, 2011

I put a shockwave loader into my VB.Net application. When the shockwave loads, it opens about 20 different IE windows and says page cannot be found, while correctly loading the shockwave movie into the application. It's bizarre... how do I fix this? Not even sure if I should post this in this forum or a flash forum.

View 5 Replies

Gets A SWF Flash Into A Shockwave Movie?

Dec 3, 2009

I am trying so that when the webbrowser has completed, It gets a SWF flash into a shockwave movie. Things i've tried.

[Code]...

View 2 Replies

Adding Shockwave Not Show In Tool Bar

Apr 7, 2010

I'm trying to add it, but it will not show it in my tool bar. I click project, add reference, switch to COM tab, and click shockwave flash and then click ok. I have done this multiple times, and of course it doesn't get shown in my tool bar. Why is this/ how can I fix this?

View 1 Replies

Change Aspect Ratio On Shockwave?

Oct 11, 2009

I did a little search on here and google, I tried to find the answers for how to change the aspect ratio on shockwave but there is no answers. Is it possible to change the pixel ratio on shockwave?? I hope there is solution for my needs.

View 10 Replies

Change Frame Size On Shockwave?

Oct 12, 2009

how to change the aspect ratio of the frame size on shockwave. I have tried to use the property but it's not there. In which methods of the properties that I can control the frame size on flash?

View 4 Replies

Create Playlist For Shockwave Player?

Apr 11, 2010

i want to play multiple swf files in a single shockwaveflash object instance one after other as a playlist..

so how can i create a playlist for shockwaveobject...in vb.net

View 1 Replies

Falsh Shockwave - Select A Movie?

Oct 14, 2009

Now i have this Shockwave component in my formBut how to select a movie to thisregardsalvinALK

View 1 Replies

How To Change Aspect Ratio On Shockwave

Oct 11, 2009

how to change the aspect ratio on shockwave but there is no answer.

View 13 Replies

Menuitems Is Not Working When Clicking On Shockwave?

Nov 9, 2009

I have a form with contextmenu where you can get the menu items on shockwave. I uses the menu items event to get the method of working when clicking them on shockwave by using right-mouse button. When I debug the project and when I clicked on testmenu item, nothing have happens.

Form Code:
Code:
Public Class Form1

[code].....

View 7 Replies

Menuitems Not Working When Clicking On Shockwave

Nov 9, 2009

I have a form with contextmenu where you can get the menu items on shockwave. I uses the menu items event to get the method of working when clicking them on shockwave by using right-mouse button. When I debug the project and when I clicked on testmenu item, nothing have happens.[code]Please can you tell me why it doesn't do anything when I click on testmenu item?? And please can you help me to get this fix by when I click the point on shockwave to get the contextmenu items then click them to get the menuitems fully in working order??

View 2 Replies

Shockwave - Application Is Not Working On Other Computers?

Dec 29, 2011

i have a simple app of one form.on this form there is:

webbrowser -
axshockwavecontrol -
combobox -

[code].....

View 2 Replies







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