How To Display Swf File In Vb Mdi Form
Good day to all. Gotta ask to all you experts, anybody knows how to display swf file to vb mdi form? you know, i have created swf file animation and i want it to be displayed in my mdi form, this is my problem. pls. help me.
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Display File Contents On A VB6 Form
Hi,
How can I make a form with a powerpoint show embeded in it, like a picture.
I do not want it to open powerpoint or run the slide show in full screen. Is this possible.
Regards, Matt
Open File And Display Its Data On A Form
how do i go about displaying data stored in an external file onto a form?
for instance i would like to able to press a command button and then the form would open with the data displayed on it.
any tips?
File Does Not Display In Correct Form(URGENT)
Have a look...try opening the attached .txt file..
Problems: Unable to open .txt file in first window.
Unable to open executed .xls file in second window, instead it opens in native Excel.
Must make sure the convert button Is the one executing the commands to convert t .txt into e .xls format
Attached is a file called convert .txt2 .xls....that is an example which my lecturer downloaded for me. I used that to come out with what I have right now. Pls take a look..I'm runing out of time. pls someone help!!!
How To Display A Form When A Non-executable Project File Is Opened?
Say I'm working on a a VB application called myProject.vbp. To open this file in VB you click on the file name in whatever directory it's been saved and Visual Basic will open all related files associated with this project. What I would like to do is have a an About form (or any other form) open first after clicking on myProject.vbp that would give information to the user before actually accessing the code and associated files in myProject.vbp. This form would have an OK button, for example, to say proceed and open the myProject.vbp file as usual. Is this possible?
Display Form But Keep Executing Code In Main Form (think I Need A Splash Screen ..)
I've got a form which i have calling up a progress form. this form just has a label adn a progress bar on it. however, after i call up the form to be visible, i need to be able to keep executing my code in the main form, and simply update the progress form's progress bar and label. I think i need a splash screen, can someone point me in the right direction?
Showing A Message Box On Borderless Form Causes Owner Form To Display
I have a normal form (frmMain) and borderless form (frmAbout). There is a button on frmMain which calls frmAbout.Show to make the about form display. Then I have another button on the about form that uses the MsgBox function. The message box is displayed but it also causes frmMain to display in front of frmAbout (and then the message box displays on top of frmMain). It's as if the message box is being displayed from code in frmMain instead of from frmAbout. How can I fix this problem?
Display A Form And Continue Processing The Module That Called The Form
I have a module that when you give it a directory reads the contents of a text if it exists and then reads the filenames of all .jpg file into an array.
What I would like to do is have the module display a form with a single multiline text box that the module can display processing information. Information like "Found 25 .jpg files" etc
When I display the form (frmProcessDirectoryStatus) on screen the program stops because the form itself does nothing. How do I pass control back to the module to continue on the next line after the form is displayed?
Cheers
Matt
Display Information On Main Form That Is Gathered On Second Form.
Hello,
I am using a serial barcode reader to scan information into a label on a form that is NOT my main form. I would like to display this information on my main form as well. Actually, I am using the comm event from the scanner to capture the information so even if the second form is not open, I want to display the information on the main form (in a label). So...to hopefully simplify my question....How do I display information from one form to the main form.
Thanks!
Add && Display Appointment Form And Schedule Form
I got 2 forms :
1) add & display Appointment form
have hairdresser name (combo box )
Date (Date picker)
Schedule (command button)
2) Schedule form
have
(MSHFlexGrid1) it will display working time, client name, Service and price
cancel (command button)
when end user open add & display Appointment form he/ she will choose
hairdresser name then choose Date for appointmnet and then click on
Schedule button
after end user had click on the Schedule button it will pop up Schedule form and display working time, client name, Service and price in MSHFlexGrid1 that end user had selected in add & display Appointment form
now I have lots of problem, I dont know how to write it the code. Can anyone pls teach me?
It must be done with isual basic 6.0 and acess 2000 (due to school requirement)
My email address is funky_little_Man@hotmail.com
Thanks you for ur help. A million thanks
Using SetWindowPos To Set A Topmost Form Causes Another Form To Display
My program has a main form (frmMain) and a popup form (frmPopup). The Main form has a timer which displays the popup form to alert the user of a certain event. I am using SetWindowPos to make the popup form topmost so it's allways on top. But for some reason this causes frmMain to show if it was previously hidden behind some other forms. In other words it seems to bring the main form to the front, and then set the popup window to topmost.
I can't understand why the main form keeps appearing when I don't want it to. Is there a way round this problem? I tried calling frmMain.Hide immediately after SetWindowPos but you still see the main form flicker up for a fraction of a second.
Display Form Ontop Of Main Form
Hello Everybody!
I am trying to do the following: When a user clicks on a button, a form pops up with some buttons on it. The problem I am having, is when that new form appears, I don't want the user to be able to click on or access the Main form until they click a button on the new form. I guess this would be like writing a MSGBOX. The user needs to click something on that message box before they can do anything on the main form again. How can I accomplish this with a form?
Thanks for your help!
~ Mark
Display MDI Child Form From Within MDI Form
Hi,
I have the project group with 2 projects: the 1st is Standard EXE with the form MDI, the 2nd is ActiveX DLL with some MDI child forms. In ActiveX DLL project, there is the class to display the MDI child forms (form.Show). The menu in Standard EXE uses the class method to display those MDI child form from ActiveX DLL within MDI form of Standard EXE. When I do this, the error message "Runtime error 366; No MDI form available to load" appears. Please help me how to do that.
Thanks,
Tung
Display Form On Top Of Modal Form???
Can this be done? I want to display a form on top of a modal form temporaryly and dismiss it afterwards. Perhaps showing the form by pressing F2 or any other function key.
After Using (Drive,Dir,File) Controls, How To Display Selected File Contents?
Hi, I have figured out how to take the following controls (Drive,Dir,File), place'em each in form then use DriveListBox to select a drive, from there use DirListBox and select a folder, from there go to FileListBox and select a file from that folder ... finally pressing a command button (cmdDisplayPathName) to display the complete pathname in (picDisplayPathName). All work fine. Here's what I want to do next:
Press another command button (cmdDisplayFileContents) to display the selected files' contents into a textbox (txtDisplayFileContents).
My code so far:
Code:
Private Sub DriveListBox_Change()
'This is the Drive List Box control
DirectoryListBox.Path = DriveListBox.Drive
End Sub
Private Sub DirectoryListBox_Change()
'This is the Directory List Box control
FileListBox.Path = DirectoryListBox.Path
End Sub
Private Sub FileListBox_Click()
'This is the File List Box control
End Sub
Private Sub cmdDisplayPathName_Click()
'When button is pressed, complete path displays
picDisplayPathName.Cls
picDisplayPathName.Print DirectoryListBox.Path;
If Right(DirectoryListBox.Path, 1) <> "" Then
picDisplayPathName.Print "";
End If
picDisplayPathName.Print FileListBox.FileName
End Sub
Private Sub picDisplayPathName_Click()
'Displays the complete pathname of selected file.
End Sub
Private Sub cmdDisplayFileContents_Click()
'When this button is pressed, the selected files' contents display into "txtDisplayFileCont.text"
** This is where I do not know how to code, tried a couple hokey ways, was totally incorrect.
** Need help in this area.
...........
Else
'Error message
MsgBox "Unable to display contents."
End If
End Sub
Private Sub txtDisplayFileContents_Change()
'Displays the contents of selected file.
End Sub
Three Questions
(1) What do I code in the 'cmdDisplayFileContents_Click()' portion in the above code?
(2) Once coded I know displaying a textfile is easy and will show up in textbox (txtDisplayFileContents), but what about other file types? Does a viewer of some sort need to be used to show file contents if not a straight text file? --- If so, how is this coded/implemented?
(3) In using (Drive,Dir,File) to browse around and select a file, I end up with three separate controls on the form ... is there now a shortcut (one control?) somewhere that can do the same thing? If so, what is it?
Thank you for any help and direction(s).
~ Juanita
Display On Form
I have certain cells with conditional formatting to make them red when they are negative. Is there any way to show these on a form.
When I use a listbox the colour is removed.
Thanks
Can't Display Form
I built a very simple vba app in which most of the code is attached to a form. This has been used successfully by 25+ people for over a year.
Now 1 of these users is unable to display the form. When he activates the command button to display the form, it gives no error message but the debugger stops on the form.show command.
It seems that there is a .dll missing but which one?
Any ideas would be appreciated. I'm stumped!!
Display New Form
in my project, I inserted two forms in the excel application, I just wonder how can I write the vb code for displaying another form by click a command button from current form.
Form Display
I have an infinite loop in form, intentional..
It is in the Form_load()
I the question is this, i want the form to load, and do the code, yet display the form and continually update it..
example
form loads --> displays --> commits code all with no user intevention
is this possible in form_load event???
Regarding Display In The Form
Hai Friends,
I Made A Notepad On Which When I Click A Button I Want To Display Form On The top Right Side Of My Form as chid form And User Must Able To Work With It
Can Any One Suggest
Display A Form
hi
I want to display my form at the center of the screen and I want it to be non sizable.Regarding displaying the form at the center I used
'.StartUpPosition = 2
'.SetFocus
but an error message occured telling me that StartupPosition is not supported by VB6
THANKS
Display Form
Dear Sir,
iS THERE ANY CODE TO SCROLL UP AND DOWN THE FORM DEPENDING ON THE SIZE OF THE MONITOR.
tHANKS A LOT.
Form Display
The main form (form A) of my VB has successful shown another form (form B) based on menu tree selection.
Amid data entry of form B , I switch to another task and thereafter I can only switch to form A but not form B.
How can I set the form B so that it is always shown on top of form A when I switch between different tasks? Just like the "About Microsoft Visual Basic" window being displayed always on top of Visual Basic Development window even I switch between tasks.
Thank you
Display Form
How can i do to show a form that contains a message of processing or a gauge object while the parent form make, i.e., a Database process?
Display Form ???
Hye,
if you want to close the form after the command has been executed, write
Unload FormName
at the end of the FormLoad.
Display A Form Even If...
I want to have an application visible on a windows NT machine when it is locked. I don't need to be able to do anything with it I just want it to be visible. Is there a way to do this? Are there applications that can be displayed when an NT box is locked? I appreciate your help.
Display Is Form!!!
How do I display more than one instance of a Form????
For example. Let's say we have a form called frmhello
i have to be able to click a command button and have it load up frmhello everytime. so, each time i click it, another frmhello loads up.
Display Form
Anyone know how I can display a hidden or invisible form of a program in memory from another program ?
Form Display
I have 2 form. the name of the form is 'Form 1' and 'form 2'. When i click the button at form1, the form2 show. The problem is, the form 2 show but it hidden at the back of form1. How i can show the form2 in front of form1?
Display On Form
Hi
I have textboxes that display a lot of numbers from a excel sheet. However when i put the values of the cells in the textboxes it shows a lot decimal places. The formatting done on the excel sheets is ignored. I was wondering if there was a way to show the values as formatted on the excel sheets.
The forms in VBA do not allow fixing of the number of decimal places shown do they ?
Form Display Query
If I have a form that I want to display the results of a query after I click a command button - what codes do I need to type under the _Click command?
Display A Word Doc On A Form?
Hi I hope someone can help me lately I dont get a lot of reply's anyway here is my prob. Thanx...
I need to show a word doc on a form, I tried using RTF control but it gives me a load of rubish if I display a doc file in the control isnt there a control that provides similar functonality to Word or at least just display it as you would see it in word
All help and suggestions appreciated.
Cheers
Display Form With An Image, In A Mdi
i want to display a form ,with an image .Which is child form of an MDI
1. The image is much larger than the form
2. The image is loaded into form at Run time,
3. Since the Image in the form, is larger than the form and mdi,
i want the MDI's vertical scroll and horizontal scroll, help me scroll thru the entire image after the image is loaded
pls help me out,
viv
Display A Form By A String
hi people,
There's anyway to form up a form, from a string.
the name of the form is 'blanca' and the string contain as well 'blanca'.
So this is possible or i'm to much hours working?
thank's
Display Problems With Form
My frmMain seems to have developed a mind of its own. On my PC at home it displays as seen in view object, but when I run it on another PC the form size changes - it gets smaller and therfore some of my text disappears. I have it set as a Fixed Dialog, and there is a status bar at the bottom.
Do I need to change its properties??
Display An Article In A Form.
Dear All,
I would like to display an article in a form as a report(about 1000words). use a text box seems not looking good.
What is the best way to do this ?
Thank you very much.
Display Objects Without The Form?
may i display objects without the form?
like in some programs like asusdvd or winamp
or some like that...
i want to display some objects into the forms but without the
form background or simply put a form with no background != of transparent!
thanks
|