Remotely Re-sizable Moveable Rectangle

May 11, 2012

how i could remotly make one and make it so i can rezise and move it?

View 3 Replies


ADVERTISEMENT

Moveable Property Is Missing

Aug 31, 2010

So I'm want Form1 to not be moveable. I've read that all you need to do is set the Moveable property of the form to False, but for some reason, I can't find it in the list where it should be between MinimumSize and Opacity. Or other simple ways I could make Form1 unable to be moved?

View 2 Replies

[VB 2008] Moveable Window Inside A Form?

Jun 4, 2009

but is there a WINDOW that is moveable..... and can be minimized inside the form....

View 3 Replies

Reg. Non Sizable Window Forms In The Application?

Mar 10, 2009

I amin process of developing a student database. Here i have many forms that are navigated through. The problem is what shall i do to have all the windows that are displayed are of same size???

View 1 Replies

Forms :: Make A Moveable Form In Case Let Off The Title Bar

Jul 29, 2009

here's how to make a moveable form in case you let off the title bar
(formborderstyle = none ) Dim down, init, curpt As Point

[Code]...

View 2 Replies

VS 2008 Setting Sizable Style To HWnd

Jun 6, 2010

im getting errors and ****.. can someone give me a working code to actually call it

View 9 Replies

List(of Rectangle), Rectangle.offset(x,y) Doesn't Work?

Jul 26, 2010

i've got a little problem with List(on T) variables.

[code]...

It works perfectly fine. Does anyone know what the problem is?

View 2 Replies

Identify Subtriangle Within A Rectangle Given A Coordinate In That Rectangle?

Feb 22, 2010

Given a rectangle of width w and height h. and a coordinate x,y in that rectangle I would like to identify which triangle I am within.

i.e. the function should take parameters(x,y) and return a,b,c,d or a zero based number representing that triangle index i.e. (0=A,1=B,2=C,3=D) if they are in that order.

I think this would be something like >= the formula of the red line and >= the formula of the green line?

I'd like to implement this in VB.NET

View 3 Replies

Set Child Form As Sizable, Autosize To True, Autosizemode To Grow And Shrink And Windowsstate At Max

Jun 2, 2012

I have a Parent form and a child form. I have set the child form as sizable, autosize to true, autosizemode to Grow and Shrink and windowsstate at max. The child properly maximizes on when loaded but does not resize with the parent. Here is the initial code to load the child...

Dim nx2 As New SearchKeyWord

[CODE]......................

View 3 Replies

Draw Rectangle Divided To Four Rectangle?

Dec 3, 2011

This code is to draw rectangle. How can I draw rectangle divided to four rectangle or more

e.Graphics.DrawRectangle(Pens.Coral, 50, 200, 30, 40)

View 11 Replies

Drawing Rectangle Inside Another Rectangle?

Jul 26, 2009

I'M creating a kind of photo viewer, and I cannot figure out how to orient the scroll buttons with the photos I want to draw because they all are different sizes.This is really hard to explain so please ask questions if you don't understand.I'M thinking if i could draw every photo on a single rectangle and then the scroll bars will position that rectangle up or down. but is there a way to make a rectangle inside another one so it only shows inside that rectangle?

View 10 Replies

Switch Form Between Full Screen No Taskbar And Sizable With Taskbar?

Mar 29, 2011

I have a form in an application I'm working on that normally displays full screen without a taskbar but provide the option to switch to a minimizable window with a taskbar. When I switch from full screen without taskbar to minimizable window with taskbar everything is ok. When I try to switch back to full screen the border disappears but the taskbar is still there and the form is not aligned properly.The text at the top is cut off somewhat and there's a small margin at the right edge that shouldn't be there.I put this code in a keydown event for the form.

If Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Then
Me.ControlBox = True
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable[code]....

How do I get the taskbar to disappear and the form to display properly when I return to the full screen mode?

View 2 Replies

Install MSI Remotely Without WMI?

Apr 11, 2011

I have an MSI that installs silently and I need to install it on remote machines via a VB.NET app. I would rather not use WMI so is there a builtin mechanism to do this?

View 5 Replies

Run A .bat File Remotely?

Oct 19, 2009

I need to run a .bat file on a remote machine and return the result to the local machine. How would I go about doing this?

View 4 Replies

Accessing The Computer Remotely?

Jun 6, 2012

I have a program called "Blue Coat K9 Web Protection" installed on all of the computers, which filter unwanted content on the internet. My problem is that every-time one of the children wish to access a website that has been unintentionally blocked, I have to enter my password to bypass the filter for that page, which can get quite annoying having to run around the house. To access the AdminCP, you have to enter an IP address in the browser on the local machine (127.0.0.1:2372)so you can change the settings.I wish to create a program that will allow me to remotely access the Admin page to unblock any sites needed from my computer.

View 1 Replies

Accessing The Database Remotely?

Jul 16, 2010

Im using vb.net and developed a project of payroll processing i need to access this project from another system which is connected via LAN by which everyone can use it, but i cant get it this is my connection string which im using .

Public con As New OleDbConnection("Provider=203.94.227.70;Data Source=path\pay.mdb")

View 3 Replies

Add Account To VPN Server Remotely?

Jun 3, 2011

I have a VPN server Hosted in 80.234.49.64

For Incoming Connections I have to Login Remotely(RDP) & add User Manualy(username & password)

I Just want to do it remotely(adding users for incoming connection) Through an application. which i want to write in vb.net

View 12 Replies

Cannot Connect To Server Remotely

Sep 28, 2010

How to connect to MS SQL Server 2008 remotely? I have the following code but I can only connect to the server under the local machine network.

[Code]...

View 5 Replies

Connecting To AS400 Remotely?

Feb 22, 2010

I need to connect to AS/400 remotely from VB.net I have this code but I keep getting this error "The 'IBMDA400' provider is not registered on the local machine" on the open statement

Dim conString As String = "Provider=IBMDA400;Data source=62.176.136.104;User Id=xxxxxxx;Password=*****"
Dim con As OleDbConnection = New OleDbConnection(conString)
Dim cmd As OleDbCommand = New OleDbCommand("Select * From Cust", con)
con.Open()

How do I get around this?

View 1 Replies

Detect If Connecting Remotely?

Mar 23, 2012

I'm working on an app that will allow connection to the sql server database from within the lan or from the internet.

I would like to know how it is possible to detect if a user is connecting via the internent instead of locally.

View 1 Replies

How To Remotely Login To Computer

Jun 2, 2009

Any way to remotely login to a computer? This is very useful for computer labs. I know how to shutdown, restart, logoff, and lock a remote computer however I dont know how to remotely log one in.

View 9 Replies

Ping A Server Remotely

Jun 27, 2011

I am working this little project where i need to ping some servers remotely. there's three of them. I need o ping them and per say while they're being pinged to have a command window open with the pinging process going to keep an eye untill it can ping successfully.And since this is for all three servers how do i create a program where it will have all three servers being pinged? [code]

View 6 Replies

Remotely Connect To A Database?

Jun 29, 2009

Is possible for vb.net to create an oledbconnection based on a url?

We have a program that uses ms access as the back end database, which is stored on a local server. The issue we are having is that our office is split in two locations. The remote users are having unacceptable speed issues since they have to communicate over the vpn. Im trying to find a way to either place the database somewhere that is quickly accessable to both offices, or to create a copy of the database on the remote server and somehow sync the two databases periodically.

View 1 Replies

Remotely Control My Program?

Sep 5, 2009

I started learning programming using VB.NET a few months ago, so I'm still like a total noob at this, and I'm not experienced enough with the Microsoft Visual Basic Library to get my answer. I have done some Google searches, and still haven't found any relevant answers.

Okay, suppose I want make a VB.NET desktop app. that displays the number "1" in a textbox when a button is pressed... I can easily make that program, but what if I want the program to, on my remote command, display the number "2" instead when the button is pressed?

Is it possible to write code that reads gmail messages? I know that gmail is pretty open about it's SMTP and POP ports and stuff.[code]...

View 4 Replies

Remotely Deleting A File?

Aug 23, 2010

I have written a conversion (vb6) tool that migrates data (SQL 2008) from one database to another and I make some temporary files (.bak files)I would like to delete after the conversion finishes. The application will not be running on the SQL Server so I need to remotely delete the files. Is there a way to delete a file remotely without having to use an administrative share or the xcmd in SQL Server?

View 2 Replies

Remotely Login To A Forum?

Aug 29, 2009

I need some advise as to which options I have to go about this problem.I want to to create a simple application consisting of two text boxes.One for username Second for Password And then a submit button.What I want is when I enter user/pass and press submit.It should only give me a single message "Login Succeeded" or "Login Failed". The forum I trying to login into is : warez-bb.org What are my options to go about this?? I have considered Sockets but thats in VB6.Still,I couldnt get it to work.It doesnt even connect warez-bb on port 80.

View 2 Replies

Resetting IIS Programmatically And Remotely?

Sep 9, 2009

Usually, when I reset the IIS of a remote server, I have to use "Remote Desktop Connection", log in, and go to DOS , and type "iisreset". Now I'm wondering is it possible to do the exact same thing without using "Remote Desktop Connection" application? Could this be done programmitically and remotely (because the program will not be running on the actual server)? Of course, I'll be providing the username and password within the program.

View 2 Replies

Set The Color Of A Text Box Remotely?

Mar 5, 2012

I want to set the color of a text box remotely. I have this code but its not working.

Dim coloroftext = "black"
tb.ForeColor = "color." + coloroftext

View 3 Replies

Uninstall A Program Remotely Using .net?

May 1, 2009

I've taken MS 4994A (Intro to VB.net), and am studying for 4995A (Advanced Intro to VB.net)Previous experience with VB6 and C++ tells me that the way to do it would be to create a program that will accept a list of computer names and check the registry one-by-one (I'm open to suggestions, though, of course). If it finds the program we're wanting to remove, it will remove it, then automagically install .net 2.0 and the .net version of the programs that were just removed.

View 1 Replies

Adding Account To VPN Server Remotely?

Jun 3, 2011

I have a VPN server Hosted in 80.234.49.64 For Incoming Connections I have to Login Remotely(RDP) & add User Manualy(username & password)I Just want to do it remotely(adding users for incoming connection) Through an application........which i want to write in vb.net?

View 8 Replies







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