Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[EO] Set Of Questions


Ne-o-x
 Share

Recommended Posts

Hello guys,
I have some questions, if someone can answer to any of my questions I will *hug* him so much :D

AutoUpdater Related:
1) How can I make a box(?) to open a webpage. For example a news page but hosted on a domain not a text file.

2) How can I make a button to open your browser once you click it?

3) How can I make the form moveable if border = false/0
Link to comment
Share on other sites

@Ne[o:

> x link=topic=72555.msg778705#msg778705 date=1307484193]
> 1) How can I make a box(?) to open a webpage. For example a news page but hosted on a domain not a text file.

You can do that with WebBrowser controll
Link to comment
Share on other sites

(For 3) Go to frmMain and open it's code. Under the "Option Explicit" at the very start add these:

```
Private Declare Function ReleaseCapture Lib "user32" () As Long
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
```
Now, in your Form_MouseMove sub above:

```
If debug mode, handle error then exit out
```
Add:

```
Dim lngReturnValue As Long
If Button = 1 Then
Call ReleaseCapture
lngReturnValue = SendMessage(Form1.hwnd, WM_NCLBUTTONDOWN, HTCAPTION, 0&)
End If
```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...