Address Bar Appends Unknown Characters?
Jul 1, 2011
When i run my website in Visual Studio 2008 the address bar of explorer generates the following address
[URL]
The bold and underlined portion i-e (S(2vq3th45ep5kle5542jo4i45)) is generated from today and automatically. What is this showing? Is it a virus in my computer and will it destroy my application? It is making me tense as i am ne to ASP.NET and not in position to re-develop what i have mde up till now.
View 3 Replies
ADVERTISEMENT
Feb 6, 2012
I need to seperate a name into 2 parts using split the first part being 2 letters "That was easy" but the last part of the name would have an unknown lenght. so how do I get the unknown length? I believe I understand the Join Part here is what I have but it only works when you know the lenght of the name
Project Notes
'Form has two textboxes and one button
'first text box holds a first and last name
' 1-seperate the first and last name into 2 variables
[code]....
View 7 Replies
Apr 8, 2012
i am trying to test if the characters in a string is a valid MAC Address
but my code
dim getMAC as string = "22:13:35:67:49:ab"
If Regex.IsMatch(getMAC, "/^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$") = True Then
messagebox.show("is valid")
[Code].....
View 2 Replies
Jun 14, 2010
i am making internet search engine in vb 2010, i have textbox1 and button1,... i had to do webBrowser1.navigate("") but the problem is that i cant add "+" to it... cause we know that + is like &...... how can i override it???
also i want to launch it in default browser not webbrowser1 how can i do it??
View 6 Replies
Jul 15, 2011
The regex statement below is being used to valid user input for an IP Address.
I want to disallow the ability of a user to type in a domain name (can'tDoThis.com)
How would I change the following statement to NOT allow a user to type in alpha characters.
Dim ipPattern As String = "((2[0-4]d|25[0-5]|[01]?dd?).){3}(2[0-4]d|25[0-5]|[01]?dd?)"
View 2 Replies
Oct 22, 2009
Using Access 2003 and VB code, I have created a form with a number of labels. The labels will display an employee's names. I have named the labels name1, name2, name3...etc. Using an ADO data set and DCount I have determined the number of names in an Access table (the number of names can vary). What I want to do is for each record in succession to pick the first name and surname from the data set , combine them into a full name (this part has been successful), and then set the full name into the label caption in succession. Example: full name 1 into name1, full name 2 into name2, full name 3 into name3... until all names appear as labels on the form.
I created a counter to and a variable to increment the label number but when I address the caption property of the variable containing the new label (e.g. name1, name2..etc.) it throws an errer at runtime. Here is the code:
[Code]....
View 8 Replies
Jul 23, 2009
I have the following expression that takes a value in a combo box and appends it to a string :
Dim Expression As String = "COMPANY = '" & cmbCompany.Text & "'"
View 2 Replies
Jan 11, 2012
I have some code that fills my datagridview (VulDgv) I also have some code that exports the datatable to an excelfile (DatatableToExcel). All works pretty good. However...when I export to an existing file I get 2 warnings, first is the "file exists overwrite" warning from the savefiledialog. The second message is the "excelfile exists" from excel itselve. (is it possible to hide this message?) My real problem is after the 2 messages the code APPENDS the data to the excel file instead of overwriting it.
[Code]...
View 7 Replies
Dec 6, 2009
If I have two threads both calling a normal function at the same that appends strings, sometime the output string is a combination from both threads as the function had not finished executing the code before it was called again... Would a shared function wait to finish first?
View 9 Replies
May 17, 2012
Prog appends a textfile. Don't want user able to delete or modify while form open. How do I do this?? - As long as form is open user cannot modify or delete textfile. But so the file can be edited from within form
How do I do this. Here is my code so far
Public Class Form1 Dim FILE_NAME As String = "C:UsersBirthdayDocumentsinfo.txt" Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]...
View 5 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 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
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
Dec 21, 2011
Essentially I am trying to replicate the Windows 7 (In-Windows) activation key TextBox form. The Form where it will auto capitalize letters, remove or deny all non alphanumeric characters except dashes every 5 characters that will be auto-input.I assume this can be done with a fairly complicated replacement Regular Expression but I cannot seem to create one to fit the needs.
This is an Example of what I have right now, but it creates an infinite loop as it removes all characters including dashes, than adds a dash, which changes the text and removes the dash again.
[Code]...
View 4 Replies
Sep 13, 2010
i have been trying to remove special characters. i am not able to remove many crlf in middile of the string.
View 3 Replies
Aug 3, 2009
I need to create a console program that allows you to enter a string, of which is then outputted in reverse.
Sample:
Input: Diewas
Output: saweiD
Apparently I need to find out about strings and will also need to use a loop.
View 9 Replies
Feb 23, 2011
Not sure if too many people know this, but the following line will cause an error:
GroupName.Substring(0, 3) = "jt_"
....if the length of GroupName is less than 3 characters. I always thought it would simply return whatever characters in GroupName, but no, it errors. I must be thinking of the old VB6 days.So, I now have to change the code to:
If (GroupName.Length > 2) Then
If (GroupName.Substring(0, 3) = "jt_") Then
Note that the two comparisons need to be on separate lines. If they are on the same line, such as:
If (GroupName.Length > 2) and (GroupName.Substring(0, 3) = "jt_") Then then the code will still fail as the length command is executed at the same time as the substring command- which will cause the error when the GroupName length is less than 3.Just thought that those of us not aware of this should be!
dp.SyntaxHighlighter.ClipboardSwf = '/dp.SyntaxHighlighter/Scripts/clipboard.swf'
dp.SyntaxHighlighter.HighlightAll('9844f9bfb55449e6a786fa62aaadfa20')
dp.SyntaxHighlighter.HighlightAll('f6d554fd98464bdba9159b319e51b381')
dp.SyntaxHighlighter.HighlightAll('93bf4ca63ad8447abdf084d8a9991e15')
View 8 Replies
Aug 5, 2011
I have two textboxes. I type in one of them and the text gets copied in real time into another textbox. There is one catch. I need to replace specific character with something else.
If I enter a quote " in textbox1, it has to be replaced with " in textbox2.
I started with something like the below code, but obviously this does not work (tried different stuff - this is for demonstration only). In the example below 'a' represents " , and 'b' represents "
Private Sub TextBox1_KeyUp(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.KeyUp
TextBox2.Text = TextBox1.Text
[Code]....
View 2 Replies
May 9, 2011
With the shape of really large characters such as numbers and alphabetic characters + others, is there a way to get that shape as a REGION please?Imagine a really fat snake forming the letter S or two rectangles placed together to form a large letter L or a T like the shapes in TETRIS.
1) Does anyone know of anything in VB.Net that can translate such shapes into a System. Drawing.Region or know of a project elsewhere that achieves this please?
2) While I'm on the subject, how would you SCALE UP / DOWN a System.Drawing.Region please? How would you work out the Transform Matrix required please?
View 1 Replies
Aug 27, 2011
I'm making an application that will change position of two characters in Word.
[Code]...
Program works good, it is mixing characters good, but it doesn't write text to the file. It will write text in console, but not in file. Note: Program is working only with words that are divisible by 2, but it's not a problem. Also, it does not return any error message.
View 1 Replies
Feb 20, 2011
I'm making a custom control suited for handling passwords. I have created a control that inherits from a text box and I have implemented a lot of things so far. But what i want to do now is create a system so that when a user types It will display his last character typed for a X amount of time. Is there a way to turn only selected characters into password characters and still be able to get the password text from the Text property ?
View 4 Replies
Feb 9, 2011
In member register page, I added email address validation but it only check the email address format, such as .com, .net, .org.If user inputs fake account such as aaabbb01010@gmail.com, how to verify it and return an error?
View 2 Replies
Aug 4, 2009
I know that the topic is kind of weird, but I will explain that here. I am reading text from a text box and inserting that into a listbox. I am wanting to read what the user inputs into the text box and add a character between each character they type. Here is what im wanting to do written out[code]...
View 4 Replies
Aug 4, 2010
example. i have 2 textboxes and if there empty it says "Incorrect Information", but how do i make it that like when a person enters something into the textbox1 it can be 3 values minimum.. like it could be eather 2 letters 1 number or what ever just more than 3 values (no special characters), and on the password.. 6 values minimum (no special characters).
[Code]...
View 14 Replies
Aug 7, 2009
So I have an ASP.Net (vb.net) application. It has a textbox and the user is pasting text from Microsoft Word into it. So things like the long dash (charcode 150) are coming through as input. Other examples would be the smart quotes or accented characters. In my app I'm encoding them in xml and passing that to the database as an xml parameter to a sql stored procedure. It gets inserted in the database just as the user entered it.
The problem is the app that reads this data doesn't like these characters. So I need to translate them into the lower ascii (7bit I think) character set. How do I do that? How do I determine what encoding they are in so I can do something like the following. And would just requesting the ASCII equivalent translate them intelligently or do I have to write some code for that?
Also maybe it might be easier to solve this problem in the web page to begin with. When you copy the selection of characters from Word it puts several formats in the clipboard. The straight text one is the one I want. Is there a way to have the html textbox get that text when the user pastes into it? Do I have to set the encoding of the web page somehow?
[Code]...
View 4 Replies
Jul 16, 2010
The addhandler function works this way: AddHandler Button1.Clicked, AddressOf Button1_Clicked, However, I have an unknown object: Dim o as Object, But I can't add handler for this object AddHandler o.SomeEvent, AddressOf SomeFunction, How do I add handler for unknown objects as stated above?
View 2 Replies
Jan 18, 2011
I have a project that is built in VB.Net 2010 and WPF 4. I have an option to return to a sign-in screen, yet this option can only be accessed from a separate (quit confirmation) window. This function can be called when one of about a hundred windows are open behind the quit confirmation window.
View 1 Replies