[2008] Public IP Address?
Mar 12, 2009
I did try doing a search first but for some reason the search is not working for me, Sits there apparently 'searching' for around 5 minutes then get a page cannot be displayed so I thought I would ask the question instead.
View 5 Replies
ADVERTISEMENT
May 25, 2012
How can I use my VB.NET application to get the public IP address of my computer?
View 2 Replies
Mar 4, 2011
finding my public IP address using .NET?
I've seen code that simply gets the text output from whatismyip.com but I want to use my own domain to find the IP address because I know it will always be available and I can use it as much as I like.
I'm assuming that I could get my public IP somehow by pinging a remote server such as a domain name that I own, but I'm struggling to find anything other than the built in ping in VB.NET which simply gives true or false as a result.
View 3 Replies
Nov 27, 2009
I'm trying to use the DHCP API (using the references on pinvoke.net) to retrieve a computer's MAC address when given the IP address but I can't get the code to work. I've run all the C# code on pinvoke.net through the C#-to-VB converter but I'm stuck now.
Here's what I have so far. The value of res is always 5 (should be 0). Thing is, I can't find any documentation on what the return codes mean
vb
Private Sub GetMACDim client As String = "1.1.1.1" Dim server As String = "0.0.0.0" Dim si As New NativeMethods.DHCP_SEARCH_INFO si.SearchType = NativeMethods.DHCP_SEARCH_INFO_TYPE.DhcpClientIpAddress si.ClientIpAddress = Convert.ToUInt32(StringIPAddressToUint32(client)) Dim res As UInteger Dim oInfo As IntPtr
[code]....
View 2 Replies
Feb 10, 2011
I can access a module from code behind but not from the aspx page in inline VB code <% ... %>.
View 2 Replies
Apr 7, 2011
Imports System
Imports System.Threading
Imports System.ComponentModel[code]....
how to declare "smsport" on class smscomms as public so that it can be access in class form1 or button1_click event.
View 5 Replies
Aug 26, 2010
How do declare a public variable .aspx web page that can be used in all the pages within my web application?
View 3 Replies
Jul 6, 2011
Are there any IP Address filters or masks available in Windows Forms as per following screenshot? A backslash shouldn't be allowed or it should be filtered somehow.
View 1 Replies
Aug 11, 2009
SocketException was Unhandled: Only one usage of each socket address (protocol/network address/port) is normally permitted I get this error every time i click collect a second time.
[Code]...
View 3 Replies
Mar 8, 2009
Can anyone point me to some code which can help obtain the network address from the host IP and subnet mask?
View 3 Replies
Aug 6, 2011
I made web browser which consist address bar that I use it to type addressess in it i.ewhen I type [URL] it opens [URL] but when I go to anther page in google it doesnot show it's link in address bar lix InterntExplorer or other international browsers so how to show any link or any sub page's link in my browser address bar ?
View 1 Replies
Nov 29, 2009
I used to develop applications in VBA, but now I'm using SQL Server 2008 Integration Services for a lot of the functionality, and using VB.NET as the scripting language where needed - all of which are new to me. I need to do the same string manipulation in several different SSIS tasks. With VBA, I'd simply write a function and declare it Public, and I could use it from any module. E.g.
Public Function MakeId(ByVal Country As String, ByVal Postcode As String) As String
....
End Function
' later...
Dim MyId as String
MyId = MakeId(County, Postcode)
But when I do that in a Script Task or Script Component, I find I can't call the function from VB in any other Script Task or Component; it says MakeId is undeclared. It works within its own 'box', but not from anywhere else.
View 3 Replies
Jun 28, 2009
' Use Your work Group WinNT://&&&&(Work Group Name) Dim DomainEntry As New DirectoryEntry("WinNT://Wokgroup") DomainEntry.Children.SchemaFilte
[code].....
View 8 Replies
Oct 2, 2009
why I am getting a NULL reference error. Form: Public Sub CreateSession() ' This will be the execution function after the date, provider, session type, session number ' and consumers have been entered. Each Consumer will have it's own tabpage and seperate record.
[Code]...
View 31 Replies
Nov 29, 2009
I have a public readonly variable in a module, but when I try to set it in my form load event for the first time I get 'ReadOnly' variable cannot be the target of an assignment. It is my understanding that a ReadOnly variable can only be set once and after that you would get an error when setting it.
View 2 Replies
Feb 3, 2010
I have this code that gets the local IP, It works when I'm directly connected to my ISP modem but when I'm in a router it displays the mac instead of the IP. I don't know what's missing in the code.
[Code]...
View 2 Replies
Feb 3, 2010
I have this code that gets the local IP, It works when I'm directly connected to my ISP modem but when I'm in a router it displays the mac instead of the IP. I don't know what's missing in the code.
code
Imports System.Net
Private Sub GetIPAddress()
Dim ip As IPHostEntry = Dns.GetHostEntry(Dns.GetHostName)
Label25.Text = ip.AddressList.GetValue(0).ToString
End Sub
View 11 Replies
Dec 9, 2009
e.g. mine
64.233.167.104
View 6 Replies
Nov 11, 2009
I have these list of RS-232 strings declared in my public class
Public Class TouchInterface
Dim WatchTVbtnCmd As String = "rs232command1"
Dim VolUpbtnCmd As String = "rs232command2"
Dim VolDownbtnCmd As String = "rs232command3"
Dim SystemOffbtnCmd As String = "rs232command4"
Dim RadiobtnCmd As String = "rs232command5"
Dim MusicbtnCmd As String = "rs232command6"
I then have this private sub. For the sake of this thread, what I would like to do is get the name of the label that was clicked which in the code below is already done, convert it to string (not sure if this needs to be done), this is also done in the code below. Next I want to compare the labelnamestring to all the variables in the public class to find out which one it is equal to and then disply that variable which should be my rs232 string in the message box. I have also added "Cmd" to the variable names above so I also need to work out how to add the text "Cmd" to the string to properly compare.
Private Sub Musicbtn_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WatchTvbtn.Click, VolUpbtn.Click, VolDownbtn.Click, SystemOffbtn.Click, Radiobtn.Click, Musicbtn.Click, GardenVolUpbtn.Click, GardenVolDownbtn.Click, GardenRadiobtn.Click, GardenOffbtn.Click, GardenMusicbtn.Click, GardenMediaCenterbtn.Click
Dim labelname As Label = DirectCast(sender, Label)
[Code] .....
View 6 Replies
Nov 17, 2009
Basicly I have a set of public subs, (not related to a form), inside a public class, and all of them share a variable. One of the subs, the one called for first gives the variable a value.
When the next sub is called, the variable is null. The data in the variable has been erased as the execution of the prior public sub ended I'm guessing.
View 7 Replies
Jul 16, 2008
I am making a small application using vb.net 2008 in which i have to get the mac id of the network card in the machine. I have tried to search on the internet but the classes shown on the various forum are not of any help (may be syntax has been changed in vb.net 2008).Can any body tell me how can i get the mac id through vb.net 2008 programming.
View 13 Replies
Mar 20, 2009
I have a webbrowser1 and textbox and button is there anyway i can put an proxy in textbox1 and change mine to it ? so webbrowser1 can browse a website under that ip and not mine ?
View 2 Replies
Mar 22, 2011
with WIN 7 + Vb.net 2008 express how can i get the IP address and MAC id of my system..i got a thread there here but i couldn't fallow as it caused error.
View 2 Replies
Feb 16, 2010
I'm trying to figure out how to view the default gatways ip address and then get the mac address from that
how to see what the computers defualt gateway is?
View 7 Replies
Jan 29, 2011
I am filling a datagridview with a xml file, sorting the grid based on Column 1 then trying to compare a date in Column 4 against the date in a label using the below.
[Code]...
I am entering the date into the grid, example format(30/01/2011) and writing the grid to the xml file.
View 1 Replies
Jul 28, 2010
May I expose my "small" problem?Here, i'm following a course in my University, called Introduction to Programming, there are only beginners in our class. i'm also a newbie, to say so.And some stupid students were not paying attention so he gave us a crazy assignment for Friday 30th.This is what his assignment consists in. I have created a PDF file from his requirements and some samples of Code.[url]
View 6 Replies
Aug 8, 2009
I tried ipEntery.AddressList.GetValue(0).ToString in a messagebox
but it only displays link-local ipv6 address o f"fe80::28d3:3882:3490:1a95%11" is their another way of obtaining local ipv4 address directly?
View 15 Replies
Aug 4, 2009
How to extract the IP address before using EndAccept to accept the connection request. Its in a Layer3 of the Syn Packet on a TCP request I just dont know what Magic Is needed for Vb.net to extract that Header!
View 11 Replies
Feb 6, 2010
What is the best way to log into a website from a program. I can login using a web address. But I can't figure out how to utilize the web address and get it to log me in. I'm not too sure how to go about getting a login to work really. What is the best way to go about this? It is just a PHP-based website.
View 12 Replies
Sep 16, 2011
I have a class called 'Box' which inherits 'TextBox' and has one string property.I've added multiples of the class to the Form, and I want to then display each of the strings in each 'Box' in textbox1.Obviously, each new class is called, Box1, Box2, Box3 etc, so I know I can access the string with something like: textbox1.text = Box1.text + Box2.text + Box3.text But, if I start adding more 'Box'es to the form, how can i automatically 'address' the nex 'Box'es?
View 23 Replies