IDE :: Do Not See DataTip Plus (+) Sign
Oct 5, 2010
I recently upgraded to VB 2010 Express (from 2008), and I have a problem using the debugger. When I move the mouse pointer over an array variable, I only can get the value for the current index, and not values for all indices, as I did in 2008.
For example, if I move the pointer to classSize(i), I see the value for the current value of index i, but I do not see the plus sign which would display a drop-down list showing values of all elements in the array.
I checked for options (Tools > Options > Debugging > General), but did not see an option related to DataTips.
View 6 Replies
ADVERTISEMENT
Dec 1, 2010
Im importing text from a .txt file using streamreader and when it reads in a � sign it converts it to the square symbol for a unknown character! If i put in a $ sign it imports it correctly!
View 2 Replies
Jan 7, 2009
I want to use VB to set an existing RDP connection's credentials.Can I do that with code only?
View 3 Replies
Apr 28, 2011
I use the code below to get driver file sign info, it works well
Imports System.Security.Cryptography.X509Certificates
Dim cert As X509Certificate2 = New X509Certificate2("C:WindowsSystem32drivers cpip.sys")
MessageBox.Show(cert.Subject)
But if want to get EXE file signed info like
Dim cert As X509Certificate2 = New X509Certificate2("C:WindowsSystem32winlogon.exe")
MessageBox.Show(cert.Subject)
the error occured "Cannot find the requested object"
View 8 Replies
Apr 2, 2010
I want to digitally sign my exe. I have a .p12 file as digital certificate.I used signtool.exe for signing the exe. After signing the exe the properties > digital Signature tab is showing the right name but when I am doing double click on exe then the "open file-Security warning" window is still showing unknown publisher.How can I show right name of publisher in "open file-Security Warning" window.
View 1 Replies
Jul 31, 2011
I am trying to get OpenSSL.net to 1) create a key pair to use for CA signing and 2) create and sign certificates using this CA. I have managed to create an RSA/SHA1 X509CertificateAuthority, and have created a X509Request and keys, but I am running into problems actually signing the request.
'create the request and request key
Dim rsa As OpenSSL.Crypto.RSA = New OpenSSL.Crypto.RSA()
rsa.GenerateKeys(1024, 65569, Nothing, Nothing)
[code]....
I am getting an OpenSslException on the line noted above, with the message error:0606B06E:digital envelope routines:EVP_SignFinal:wrong public key type error:0D0C3006:asn1 encoding routines:ASN1_item_sign:EVP lib
View 1 Replies
Nov 28, 2009
I got this nice piece of code from someone on this forum which only allows user to input numbers or backspace i need to modify it to allow the - sign so user can input a negative number Can someone share with me the code to modify this
If Not Char.IsDigit(e.KeyChar) Then e.Handled = True
If e.KeyChar = Chr(8) Then e.Handled = False 'allow Backspace
View 2 Replies
May 17, 2010
I'm building three web applications in .NET that will all share a users database and login information. Lets pretend that application 1 is the "parent" application and applications "A" and "B" are the "child" applications. All users have to be logged into application 1 to have access to applications A and B.
Authorization, Authentication, and MachineKey sections of all web configs are present and work correctly.
I have the correct web.config settings in all applications to achieve Single Sign On except one problem remains: what do I put in the "loginUrl" attribute of the forms tag in Applications A and B.
Assume that the url for the login to application 1 is [URL] How can I get applications A and B to send the user back to application 1 for authentication using only settings in web.config?
View 2 Replies
Jan 11, 2009
How can i create a sign up form.....using a database access... I'm done with Log in form and now i want to create a sign up form..
View 6 Replies
Jan 8, 2011
how to create arrow sign in vb.net that work like go to next and previous page.
View 7 Replies
May 8, 2011
i had decided to make my academic project in digital signer ,so i surf net for it and got a sample. its main aims is ti sign only one pdf..so i decided to make the application to sign all pdf which r there in a folder,i had done all the changes, i but i come accross an error which i am not able to solve,
View 1 Replies
Dec 8, 2011
I would like to know how I would separate the $ from number. I am reading data from a text file. the last column has a contain $12.00. I am able to split the five columns into an array. But also want to be able to remove the dollar sign.
i.e.
John Kay Lame Welder $20.00
View 7 Replies
Apr 6, 2011
I am trimming some strings but I am unable to do anything about the strings containing plus signs. For example if I have this string with a telephone number
Dim str As String = "+46765124246"
And try
str.replace("+46", "0")
Nothing changes in the string.
View 2 Replies
Apr 24, 2009
I am using web browser control to login to gmail account. After successful login, i want the browser automatically sign out. How can i do that? I tried this:
Private sub webbrowser1_DocumentCompleted (Byval sender as system.object)Dim element as html elementfor each element in webbrowser1.document.links if element.getattribute("href").contains("logout") then 'log out code goes here
View 1 Replies
Oct 26, 2010
I am doing basic calculator program... but i not able to use the /*+- sign on my keyboard
when i press / (for example) in the TextBox.Text will show also / sign.
View 4 Replies
Nov 11, 2011
I am fairly new to VB.NET so I research alot when I run into bugs. Problem is I cannot find a solution to this, or anything remotely dealing with it. I am developing software to connect to a remote mysql server, run a query, and come back with a dataset. I have run this query against the server through a mysql prompt and have received a result successfully. But when i try to run this query from my app, I get an object reference error.
Through debugging I have found that the @ character used for variables in sql strings, is causing the problem in my code, but i cannot find a way to pass this query to the server without visual studio throwing errors. Every answer to the use of variables that I have found, suggests specifically stipulating the variable values in my code, which I do not want to do.
[Code]...
View 1 Replies
May 23, 2012
I have one datagridview and there some field are there for money dataType. But if user want to add (-) keyword then it should be display like -$10. if again user will click on (-) keyword then it should be remove i.e $10 .
View 8 Replies
May 24, 2012
I have one datagridview control and there one column are there for money data type. But if user press to minus (-) keyword then it should be display like -$10. and again if user will press on (-) keyword then it should be remove i.e $10 .
View 3 Replies
Oct 28, 2009
I am writing to a Comm Port to display in a Pole Display and when I insert the � sign it displays a question mark on the customer display. Have others had similar issues when displaying currency signs and/or know how to resolve this issue?
View 1 Replies
Apr 2, 2011
Well I thought this was going to be easy, then the problem showed up.So I have a structure defined, as follows:
Structure Testing
Dim i as short
Dim j() as short
[code]....
And I need to do the same with all of the T2 array members.Now I get into writing the real code. Something like this:
For i = 1 to 100
Populate portions of T1 'not all values of T1 are used for each value of i
T2(i) = T1
Reset T1 to zero values and empty strings
Next i
So what is going wrong? After I set my T1 components back to zero, my T2(i).j has had all its 1-10 index values set to zero. Note that it is just the array, not the string s or the non-array i.Sure, I could write some code where I set T2(i).i = T1.i, and so on for each variable in the structure. But I have a feeling that is not the right way. There is some kind of equivalence going on between T2(i) and T1 in each loop. And I would would like to understand that more so I know how to really deal with it.
View 9 Replies
Jul 27, 2011
In our VB .NET application, we use "c0" and "c2" format strings to display currency values all over the place.
Recently, users have had issues where these currency values don't show up correctly with a $ sign, but with some weird symbol, ¤. Through wikipedia, I found out it's the generic currency symbol: http://en.wikipedia.org/wiki/Currency_(typography)
I've seen the problem happen on my machine ONCE, and haven't been able to recreate it since. It went away when I restarted the application. In fact, as soon as I saw the problem, I started another instance of the application but $ signs showed up fine in that second instance.
View 2 Replies
Dec 1, 2011
what is the meaning of the dollar sign after a method name in vb.net
like this:
Replace$("EG000000", "0", "")
View 3 Replies
Jun 8, 2012
I am using this function to enter numeric values with allowance for only a single decimal place but I also want toallow for a m
Public Function SingleDecimal(ByVal sender As System.Object, ByVal eChar As Char) As Boolean
Dim chkstr As String = "0123456789."
If chkstr.IndexOf(eChar) > -1 OrElse eChar = vbBack Then
[code].....
View 5 Replies
Feb 7, 2012
What is the correct numeric format to display a Double value as a percentage with a sign (positive or negative) ?
I currently have:
percentage.ToString("P2")
but the "P2" leaves out the positive sign. For example a value 0.1234 should be displayed as +12.34%
View 3 Replies
Jun 10, 2011
I had decided to make my academic project in digital signer ,so i surf net for it and got a sample. its main aims is ti sign only one pdf..so i decided to make the application to sign all pdf which r there in a folder,i had done all the changes, i but i come accross an error which i am not able to solve.
View 4 Replies
Jul 20, 2009
In my project i need to sign every end of a string with Binary NULL, how do I write Binary NULL?
View 6 Replies
Sep 28, 2009
Sign out user if someone else signs in with the same account Anyone have code in VB that will do this?
View 3 Replies
Mar 18, 2009
i want a richtextbox within my project where the string moves from right to left through the textboxsort of like an airport sign or the big screens in picadilly circusan autoscroll bar is no good as the strings will be really long and i want the classic small gap at the endthen it starts again, if you get what i mean.
View 7 Replies
Mar 24, 2009
I want to change the language settings for the decimal sign.My language settings is dutch.Here the decimal sign is "," the data i'm reading uses a decimal sign "." How can i change de decimal sign settings?
View 3 Replies
Sep 6, 2009
I saw one post on which someone was recommended to sign he's assembly, why is this important?
View 4 Replies