Do Rotate Right Without Carry (Shift Towards LSB)?
May 11, 2010
I am trying to rotate a select number of bits to right with click of a button. ( bit 7 to bit 0 and rotate.) The patterns should not matter. It could be any combination of set or reset bits. The bit patterns are selected by checkbox0 to checkbox7. I like to rotate without a carry bit. Is there any way(s) to do this?
View 6 Replies
ADVERTISEMENT
Jan 10, 2010
How to hold shift and then click button a and b (while holding shift)?
View 7 Replies
Dec 15, 2009
In my keydown event handler, when Keys.Numpad4 is pressed with Shift, I get the same keycode code as for Keys.Right. Is this by design? How can I distinguish between the two?
View 5 Replies
Oct 29, 2009
Stuck on resolving host IPs within a listbox. I want it to carry over the resolved IP's to listbox2. But also have an 2 radio options either to resolve IP to Hostname or resolve Hostname to IP. Thus when I hit the start button, it checks to see which one is selected and starts the process. Here is what I have found, but can there be a simplified version to this but for lists? [URL]..
View 1 Replies
Jun 15, 2011
I want to create a form that a user will enter information into. Once the user hits "Submit", the program will search through my db. I want the result to populate into a completely new form. I only need the info from one column in order to generate the entire record, but how do I carry the info retrieved from the search what the user selects into the new form in order to populate the new form.
View 4 Replies
Dec 15, 2010
I want to carry out bidirectional synchronization.I have implemented the code and procedures in the walkthrough however i have nearly a hundred forms and more than 50 tables how do i go about that
View 1 Replies
Jul 28, 2011
I'm trying to add the original pictures to my vb.net program.When the client computers install the program there should have the original pictures in their computers.And other programs, not this vb.net program, can deal with the picture. Better to get the picture fullpath ,something like D:program filesabcody.jpg.
View 8 Replies
Sep 9, 2011
I am facing a problem in my code. I am working on an application in vb.net, its a windows based application. On one of my form I need to perform so many data driven operations.
if I press tab on one of the text box, I need to set a computed value in other text box and need to set the focus to that text box.
I write a code that is a like to this.
Private Sub TextBox1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp
Select Case e.KeyCode
[Code]....
View 9 Replies
Jul 24, 2009
codes to implement buttons to do the following
1. Pause a process/ action event.
2. Resume the process/ action event.
3. Stop the process/ action event.
4. Speak the time based on the clock.
View 10 Replies
Sep 7, 2009
I'm using Visual Studio 2008 on an XP machine and am trying to develop a web app that can interact with websites and carry out automatic tasks.One problem I have is trying to recreate the web requests for automatic interaction.
For example:I use a webBrowser control to allow me to surf a page manually. Then, once I am at a specific location, I'd like the automatic interaction to take over.Part of the website requires a log-in and exchanges cookie data.When I try to read the cookie info from the webbrowser control to build the subsequent automatic requests, the cookie content is incomplete.Upon further investigation, it appears that the site sets one of the cookies to "http only". This stops the value being visible to the webbrowser control.Is there another control or method I could use to retrieve this info?
View 1 Replies
Mar 12, 2012
Which is the most efficient and speedy data structure in order to carry out calculations on it?. I have seen, collections, arrays, list arrays, databases and more. I would prefer to write just straight forward code that will be effective and which I can still understand. What I would like to do initially is have the ability to add new draws to the end of the file, edit the individual files and delete lines if required.
File would then be reformatted to show the corrections made. Some kind of data entry window is envisioned. As far as number crunching goes, I would like to make counts of each number in each of the columns , calculating averages, times since last drawn and so on.
Without being too long winded, I would eventually like to find triple combinations and maybe use them as predictions. So there you have it. This way I won�t have to go off on the wrong path, on a data structure that may not be able, or be too slow for the tasks at hand.
View 5 Replies
Aug 4, 2011
I have an asp:table which I want to exported to excel. One of my fields are alpha numeric and when exported to excel the leading 0s are stripped off. After going through this thread: Validation (CSS 2.0): 'mso-number-format' is not a known CSS property name I would like to use the css method "mso-number-format:@;.But the css is not exported to excel. I just tried to test it with simpler css things like bold font etc but its not getting carried over. I can see that if I surround my asp:Label with tags this change gets carried over to the excel but not the css bold . Other solutions in other thread does not work for me as ="00111" shows up as desired in excel but in the web form it shows up as ="00111" which is not what i want.
View 2 Replies
Sep 11, 2009
Let's say you have a user class. When the user is logged in there are properties representing basic user info, an associated address and, say, 5 profile pictures, the last a generic lsit like this: Private _photos As List(Of Photo). However, instead of carrying the weight of the profile pictures in a session vairable, to reduce resource usage, I only want to populate them if the user needs to acces them. So, for the most part, the generic list of photo's is empty. Will it carry weight anyway? I'm trying to decide if I should just not populate ituntil needed, or if I should create an alternative "light" user class which doesn't have this property.
View 2 Replies
Feb 9, 2011
I don't know how to get shift modifier key as when I pressed shift and another key, it show message box "Modifier shift key"
View 1 Replies
Mar 24, 2010
Can VB.NET Form keyDown event determine whether left or right shift (alt, control) key was pressed? I always receive the same keycode (16) for both left and shift key!
View 3 Replies
Dec 6, 2011
I have been able to toggle CAPS, NUM AND SCROLL lock using the method below but using the code below that although no error occours when I click the button nothing happens?The code which works for caps, num and scroll
[Code]...
View 1 Replies
Nov 16, 2011
I just found an interesting problem between translating some data:
VB.NET: CByte(4) << 8 Returns 4
But C#: (byte)4 << 8 Returns 1024
[code].....
View 3 Replies
May 15, 2011
When I run this command in PHP, I get:
[Code]...
The interesting thing is, that when I try to shift any number greater than int32 in .net, it yields bad results.. Every number under int32 (2147483647) yields the same results from php and c#.net or vb.net Is there a workaround for this in .net?
View 2 Replies
Feb 7, 2012
I am running out of function keys and it will be nice if I can double up on some of them with the Shift Alt or Ctrl keys.I am using
if e.keydown = keys.F3 then{it does what it is supposed to}end if I tried e.keydown = keys.F3 AND e.keydown = keys.Shift but it gets ignored. Am I seeking the impossible or am I just missing something?Can some one tell me what I am missing or point me to an example?
View 2 Replies
Jun 10, 2010
Trying to develop a text editor, I've got two textboxes, and a button below each one.When the button below textbox1 is pressed, it is supposed to convert the Unicode text (intended to be Japanese) to Shift-JIS.The reason why I am doing this is because the software VOCALOID2 only allows ANSI and Shift-JIS encoding text to be pasted into the lyrics system. Users of the application normally have their keyboard set to change to Japanese already, but it types in Unicode.How can I convert Unicode text to Shift-JIS when SJIS isn't available in the System.Text.Encoding types?
View 1 Replies
Sep 5, 2011
In vb6 when you wanted to alter the effect of a mouse click, you could use the mouse down event and alternate the action depending on the value of the shift, control and alternate key. (and also detecting if the right or left mouse button was clicked)
When trying these in my project, I couldn't find the right codes to do this. I can't imagine this feature isn't available so I'm sure I am just messing up somehow.
View 2 Replies
Nov 19, 2011
I have been working on a visual Basic 2010 program to writw a Telnet script in VB Script. I have exerything working fine but need a way to send Shift+CNTL+6 to exit the telnet session.
View 7 Replies
Sep 13, 2009
How do I bitwise shift right/left in VB.NET? Does it even have operators for this, or do I have to use some utility method?
View 4 Replies
Oct 3, 2008
Is there a pre-existing method in vb.net to shift elements? Like the following.
Code:
testArray elements:
0: ""
1: ""
[Code].....
View 3 Replies
Dec 12, 2009
I know how to sendkeys, SendKeys.Send("Hello") I know how to hit other keys, Sendkeys.Send("{ENTER}")
But how do I HOLD DOWN the Shift key, I want to be able to highlight text, I know, I need to press the Arrow keys while the shift key is held down...
So... How is it possible to Hold down the Shift key
Oh yeah, and I even know how to simimulate a mouse click, drag, let go, ect. ect...
how to hold down the shift key in VB.NET?
View 4 Replies
Feb 27, 2009
I am trying to simulate holding down the shift key in code while I open an Access database to bypass the Autoexec macro using the following code.
1
Imports Microsoft.Office.Interop
2
Imports System.IO
[Code].....
View 1 Replies
Apr 25, 2009
I'm trying to make a prank program that registers all of the letter keys on the keyboard and then will make random message boxes pop-up when you press certain ones, or just re-arrange the letters.But before adding any pranks, I'm trying to just get all of the hotkeys to work like a normal keyboard because when you register a key to be a hotkey, it no longer works for anything else. So registering "e" in the program will cause "e" to do nothing when your in notepad or something.
So far I've gotten pretty much everything to work except for this weird Shift bug. Whenever I press Shift and then a letter, the Sendkeys will correctly send the uppercase key, however as soon as I release shift and press a key without it, it still keeps the uppercase for one more letter.So if I press Shift + E then "E" will be successfully sent to Notepad, but then if I just press "b", "B" will be sent instead, but then after that first error it will successfully send lowercase again.
I was using wordlabel to store the letters so as to see if the shift uppercase problem was something in my coding, but actually when I press Shift + A and then just press a, it will do Aa in the label but AA in a program with the focus, like Notepad. So I don't know if this is a problem with Sendkeys or what but does anyone know of a solution?
View 1 Replies
Apr 10, 2012
I have this code which shifts the alphabet by a certain amount. The size of the alphabet is 26. When I enter a larger size shift (for example 22) I get some weird characters displaying. I think I need to mod the ASCII alphabet to 26 to get it working but Im not quite sure which bit to mod. Basically I need to wrap around the alphabet (once it reaches Z it goes back to letter A) Do I have to create a dictionary for the mod to work (like A = 0... Z = 26) or can I stick with using the normal ASCII table? Here is the code below:
Public Function encrypt(ByVal input As String) 'input is a variable within the funcion
Dim n as Integer
Dim i As Integer
[code]....
View 1 Replies
Nov 5, 2010
I have some questions regarding vb.net bit shifting. I understand the << >> operators are bit shift operators in vb.net. I have a two byte hex value 0x3ACC, each bit in this two byte represents either a day, month or year. The bit structure of this hex value is yyyy yyym mmmd dddd. I am confused as to how I should bit shift these values so that year, month and day are in their own UINT16 values. Just want to know about shifting numbers and if I need to add any padding to the shift?
View 1 Replies
Jan 20, 2011
I've been trying to write code below many time, but it still doesn't work.
Public Class Form1
Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
If e.KeyCode = Keys.LShiftKey Then
MsgBox("Left Shift")
End If
End Sub
End Class
So I don't how to do it continue to get Left Shift Key pressing.
View 2 Replies