How To Alow Resizeable Windows Inside The Application

Nov 23, 2010

I am currently building a web browser in which i want to have 4 browser in it running at once.The main idea is there are 4 browsers in a formation where you can adjust each one to the correct size a bit like in this image (i hope its a permanent link)[URL]..if this would be thery hard to do then i would have to do somthing like in fig 3 if its simpler.

View 2 Replies


ADVERTISEMENT

Get A Resizeable Window That Contains 2 Lines That Are Both Resizeable And Rotateable?

Jul 10, 2009

For this application, I need a resizeable window that contains 2 (two) lines (In a cross hairs design) that are both resizeable and rotateable. I need them both to rotate at the click of a button (The button is on a BubbleBar, but the code is the same for a normal button control). I also need them to resize with the window (It has to be accurate). I have tried using LineShapes from the Visual Basic PowerPack, however the amount of trigonometry involved with this solution was too much for me to implement and understand.I also tried using a WPF ElementHost to accomplish the same thing, without luck. I tried using the RenderTransform property of the WPF Lines to rotate them, but I could not apply both that and resizing to these lines.

View 10 Replies

Run Console App Inside A Windows Application

Aug 17, 2009

I need to run my console program which is made in vb.net where I will use my windows forms to run the console app?I have done this but it doesn't work.[code]I've tried to add as Existing Item or Project but it doesn't work..

View 3 Replies

Start MS Word From Inside VB Windows Application Written In VB 9.0

Aug 2, 2009

I need to start MS Word 2003 from Inside VB Windows Application and Load a specific Word Document.

View 4 Replies

Add Icon To Context Menu Inside A Windows Forms Application?

Apr 20, 2012

This context menu is pops up where the user right clicks inside a dataGridView

When adding the items the VB code is

Dim m As New ContextMenu()
m.MenuItems.Add(New MenuItem("Disassociate *A* Device"))
m.MenuItems.Add(New MenuItem("Purge Device Assosciations"))

Is there no simple way to reference a resource to add an icon to said menuItems?

Pseudo
m.MenuItem(0).Icon.Source = ....
?

View 3 Replies

Open And See Data Inside A .ISO Bin File From Inside An Application

Mar 30, 2010

im new to coding (started coding last month) so im a little stuck on how to do this, im making some emulation programs to learn coding with, and a part of it is to point the app to a .iso/.bin file and scan the data inside of the iso/bin to check if a file exists.[code]My issue is i cant find any class examples, or any information etc on how to code it so my application can see the data inside of the iso/bin instead of just see'ing the iso/bin file, so that i can then check the data inside the iso to see if the file exists etc.Im a novice still at coding so making a new class myself to look inside the iso/bin is to complex for me.

View 1 Replies

Listview - Lock The First Column To Be Resizeable?

May 25, 2010

How can i lock the first column to be resizeable? Regard Simon If you don't Believe in it, Then it Doesn't Exist!

View 8 Replies

.net - DataGridView Resizeable Columns But Last Column Can't Be Resized Bigger?

May 10, 2011

For c = 0 To grd.Columns.Count - 1
grd.Columns(c).Resizable = DataGridViewTriState.True
Next c

That allows all the columns in my DataGridView to be resizable EXCEPT the last column. Why?I DO get the little resizable-mouse-pointer... but you can only make the column SMALLER, never WIDER.(Same problem if I try to set all the columns to Resizable, using the VB.net IDE)Shouldn't I be able to resize ANY column I want, bigger or smaller?

View 1 Replies

User Resizeable TextBox - Change Size Of Text Box At Run Time

Jun 16, 2010

I am running a program that needs to allow the user to be able to change the size of a text box at run time. I know I need to use the MouseDown, mouseMove, and mouseUp events. I just need some help with the coding to send the information.

View 15 Replies

Access Windows Items(?) From Inside A Program?

Oct 1, 2011

I am not really sure how to ask this question. I have been teaching myself vb for about 3 months. The book I am using is pretty good about explaining things and what I can't figure out I can find different examples on the web. I can't find out how to access windows control panels from my app. For example if I type firewall.cpl at the run line it will launch the windows firewall.

View 1 Replies

Host A Windows Form Inside A Control?

Oct 7, 2011

I have a customer which as a Visual Basic Project in single instance mode with a wired presentation logic.

The main form contains a TabControl with mutliple TabPages.If I click on TabPageA another form is shown in front of the Form and resized to have the same size as the TabPage.

If I click on TabPageB the first form is hidden and another form is displayed.So basically for the user it looks like you have a TabControl with different TabPages which is not the case.

I tried converting the Forms to UserControls and put them inside the TabPage, but, thanks to the SingleInstance app, this would take a whole lot of refactoring. I tried it but eventually gave up because of many many runtime errors and I don't want to put any more effort in this.

View 3 Replies

Execute These VBScript Codes Inside The Windows Form ?

Jun 15, 2010

my question is how can I execute these VBScript codes inside the Windows Form (of course in a button click event). I don't want to execute them by pointing to the VBS file, I want them to be in the EXE file when I compile the form so if I hand out the form to someone else, they cannot modify the scripts.

View 14 Replies

Dock A Control Inside A Panel At Runtime On Windows Forms?

Jul 27, 2009

I am designing a simple user interface using winforms. In the designer I have a panel on the form and would like to add a datagridview control into the panel at runtime and set the dock property of the datagridview to 'Fill' so that it fills the panel.

I am struggling to do this and following code is not working out for me:

Dim MyDataGridview as New DataGridView()
MyDataGridView.Dock = DockStyle.Fill
Me.MyPanel.Controls.Add(MyDataGridview)

I don't get an error but the datagridview isn't visible. It gets added 'behind' the panel and so I tried using .SendToBack() and .BringToFront() methods thinking that the panel was hiding the datagridview but this doesn't seem to work either. At any rate, it seems like the datagridview is being added to the form but just not docked within the panel

View 4 Replies

VB2010 Command Prompt/console INSIDE Of A Windows Form?

Jun 14, 2012

Is there a way in VB to make something that will simulate an advanced command prompt inside of a Windows Form? For example, something like a greenscreen app?

View 1 Replies

Mouse Inside The Application?

Aug 3, 2010

I have previously asked this question on this forum but I'm not sure how to do this so that's why I create a new thread! this won't be a problem.

I have a form (check the img) where I have 2 panels inside of it. I have 2 labels in the first panel and in the second panel I have a custom control.

What I want to do: Detect when the mouse enters and leaves the form.I currently try to detect with the Form1_Enter event but that doesn't work since the objects in the form are positioned in such a way that the mouse never reaches the "Form" and thus only passes over the objects.

I could do something like Sub DetectEntrance() Handles Form1.Enter, Label1.Enter, Label2.Enter and such...

But that wouldn't work when detecting the mouse leaving the form. Because then the leave-sub/function would be activated as fast as the mouse leaves one of the objects and not the form itself.

Then I thought of using the Bounds.IntersectsWith function to see if the mouse is outside of the bounds but I'm not sure how to use it.

[Code]...

View 4 Replies

Put Application Inside Form?

Dec 12, 2010

How i can Put any Application inside my form to run when i open my form

View 7 Replies

Run .net Application Inside Email?

Oct 27, 2009

I'm looking for a way to create 2 submit buttons in an email, using vb.net?

View 1 Replies

Run An Application From Inside Program?

Dec 13, 2009

How I can run an application from inside the vb ?

View 2 Replies

Console Inside Forms Application

Sep 10, 2011

i'm working on a Java app wich uses the CMD.i want to control the app completely though a forms application and so i created a invisible CMD console that starts and runs,the only problem i keep getting. is that after startup and further commands send to the CMD window doesnt work. not commands are received.heres my code

the basic functions
vb.net
Private WithEvents MyProcess As Process

Private Delegate Sub AppendOutputTextDelegate(ByVal text As String)


Private Sub MyProcess_ErrorDataReceived(ByVal sender As Object, ByVal e As System.Diagnostics.DataReceivedEventArgs) Handles MyProcess.ErrorDataReceived

AppendOutputText(vbCrLf & "Error: " & e.Data)

End Sub



Private Sub MyProcess_OutputDataReceived(ByVal sender As Object, ByVal e As System.Diagnostics.DataReceivedEventArgs) Handles MyProcess.OutputDataReceived

AppendOutputText(vbCrLf & e.Data)

End Sub
Private Sub AppendOutputText(ByVal text As String)

If outputtextbox.InvokeRequired Then

Dim myDelegate As New AppendOutputTextDelegate(AddressOf AppendOutputText)

Me.Invoke(myDelegate, text)

Else

outputtextbox.AppendText(text)

End If

End Sub

the startup that works.

VB.net
MyProcess = New Process
With MyProcess.StartInfo[code].......

i sometimes replace the textboxx2.text with a custom command like "exit".so when i press the button after entering exit for example nothing happens.but when the app starts it does gets the first 2 commands. so why is it failing at the buttons.

View 16 Replies

Access Folder Inside Application?

May 9, 2011

i am developing a vb.net application my question is how can i access a folder inside my application ?? for example i created a folder Myfold where i store some .doc files and i want to read them from my code.

View 1 Replies

Embed Chrome Inside NET Application?

Feb 11, 2012

Is there any way to embed chrome inside .NET application?

At the moment I am using Internet Explorer in my VB applications[code]...

View 4 Replies

Get Resource File Inside The Application

Mar 14, 2009

i was wondering if i could access a folder inside the Resources folder of the application?
i would make it to eliminate the use of the debug directory in storing files and to use the clickonce deployment.

View 1 Replies

Have A Quickwin Application Inside Of A Form

Nov 8, 2011

I have a program that when executed from a command prompt, opens a qwin window and in that window has a command like window that displays the status of my software as it runs its mathimatical equations.

If I use a GUI to act as my command window for the execution of my software, can I have another form that has the qwin in it?

View 2 Replies

How To Send Email From Inside Application

Nov 20, 2010

Trying to send email from inside my application. I have traced everything in the program and everything appears fine. Connection is made to my smtp server (shown in log files) but the message is never sent.

Private Sub sendAsEmailButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles sendAsEmailButton.Click
Dim form As New EmailData()
form.ShowDialog()
[Code] .....

View 2 Replies

Open Xml File Inside Application?

May 2, 2012

I have made a form that exports to xml and refer's to a xsl sheet to open into html format. Now what I want to do is build this program with these xml and xsl files in it. I also want the user to push submit and the xml inside the build opens up.

I understand the Diagnostics.Process.Start but for some reason its not referring to my xsl file its just loading all the values in order. My question to yall is how do i set a path inside my application for the xsl and xml to refer to each other.

Is it a dll i need to compile if so any guidance their. Im a beginner and am still learning.

View 3 Replies

Run A Python Script Inside A Application

Apr 17, 2011

I am trying to run a python script inside a vb.net application, which means executing the code inside vb.net instead of runing it external. The problem is:

I am using MsScriptControl and set the language to "python", I tried to run it and get the error "A script engine for the specified language can not be created". My research has told me i need these keys in my registry. The problem is I cant find them so how to I make them. Or even better a full solution to my problem.

View 2 Replies

VS 2008 - How To Get Files From Inside Of Application

Feb 18, 2011

As you can see from the picture there are two .ico files in Icons folder inside of the application. My question is simple - how to access those?

View 4 Replies

Access Denied To The Path While Writing A File In Windows 7 Using Windows Application?

Jul 4, 2011

I am having a windows application. That downloads files from server and write into the local directory. It works fine. When we try the same appliication in Windows 7. IT shows an error Access to the path denied (While writing to the local directory).

View 1 Replies

VB 2010 Application Works On Windows 7 Machine But Will Not Work On Other Windows 7 Machines?

Jan 22, 2011

I have developed a VB 2010 express application that works on my windows 7 machine, but when I deploy it to other windows 7 machines the application will not run at all. I created an msi script to install the software on other machines and it includes the .NET 4.0 framework an all of my application dll's and such. Any idea what might be he problem?

View 2 Replies

Windows Media Player Not Working On Windows XP Using Visual Studio Application?

Aug 8, 2011

I have embedded the WMP control in my Visual Studio 2010 app which works on windows 7 (Framework 4.0), but installing the app on winXP, I get the following error:

System.IO.FileNotFoundException: Could not load file or assembly 'Interop.WMPLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
File name: 'Interop.WMPLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'

[code]....

WRN: Assembly binding logging is turned OFF.To enable assembly bind failure logging, set the registry value [HKLMSoftwareMicrosoftFusion!EnableLog] (DWORD) to 1.

Note: There is some performance penalty associated with assembly bind failure logging.To turn this feature off, remove the registry value [HKLMSoftwareMicrosoftFusion!EnableLog].

I guess this is a reference issue, but I have added references to WMP libraries (axinterop.wmplib.dll and interop.wmplib.dll). The WMP works on the XP machine, but not when called from my application.I have searched the web now for 5 days and changed references, and reinstalled the media player on the XP machine, but nothing works.

View 1 Replies







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