Show The Pointer In The TextBox2
Apr 23, 2009I have three TextBoxes, how can I let the pointer show in the TextBox2 when I load the Form I treid this but didn't succeed
Me.TextBox2.Focus()
I have three TextBoxes, how can I let the pointer show in the TextBox2 when I load the Form I treid this but didn't succeed
Me.TextBox2.Focus()
i m using vb.net 2008.Example we have textbox1 and textbox2, question is how to show text from textbox1 into textbox2 but getting text line by line not all text from textbox1.
View 3 RepliesDim Reso As String
Reso = TextBox2.Text
PictureBox1.Image.Size.ToString(Reso)
I am trying to get the current size of the image in picturebox1 to show up in textbox2.
i'm writing an application that using a picture-box (raster image, like a map).I want to show some label when my mouse pointer passing at some area.
View 3 RepliesI am working on bit more advanced calculator, but I cant figure out how I can make my program to calculate textbox1.text and show the answer in textbox2
For example: (textbox1) 5*62+4
(textbox2)314
I'm not sure this question belong in this topic, but I don't know where else it should be?
how to show the gmap in asp.net webform on buttonclick when i enter destinations in textbox1 and textbox2
View 1 RepliesI have an open source project I converted to vb.net. I solved all the errors, except for one. This is the C# line
[Code]....
I have got the following code for if in textbox1 the would be appear as 10:10:00 AM and in textbox2 the time will appear as in 4 hours time slots automatically as 06:10:01 AM ..if the textbox2 time will be 06:10:01 AM then MSg box will appear that "You can not registered to this site because the 4 hours time slot will be over " [code]Remember in textbox1 the time would be any .....and textbox2 will auto generate time according to textbox1 to maintain 4 hours time slots between textbox1 and textbox2
View 1 RepliesHow can I declare pointer to pointer in ATL. Actually I have a handle which I want to pass by address to function. As shown below
STDMETHODIMP Function(HANDLE* hHC) //HANDLE declared as void * so actual type is void **
OR
STDMETHODIMP Function(LONG **hHC)
And want to access this function from the VB client.
heres my code
Dim con As New MySqlConnection("server=localhost; user id=root; password=phoenix0931; database=accounts;")
Try
[Code].....
my Problem what code will i add if im going to display my customer_add in my textbox2 match on the record that i pick in the combo box..
I am basically trying to create a basic math calculator, the basic inputs are in TextBox format. I have made the basic calculator ok but would like to have a MsgBox pop up if TextBox1 is > TextBox2 these are both TextBoxes which have data entered in them. Hope this explanation makes a little sense. Below is my attempt at this!
Private Sub MsgBox_Load()
If (Val(TextBoxDPID.Text) > Val(TextBoxDPOD.Text)) = MsgBox("DPID can not be Higher then DPOD",
[CODE]..................
I understand there are no pointers in VB.Net. I need to use something similar.The issue is that I have a structure that represent a deck of cards, with elements showing how many of each type of card there is. So I have my_deck.ace, my_deck.two, and so on.What I want to do is set a pointer called current_element that refers to any element in the structure. It may one time point to my_deck.three, and another time to my_deck.nine, and so on. It could point to any element.What I want to do is, for instance to set current_element to point to my_deck.ace, then decrementing current_element would reduce the count of aces by one.[code]that would work, but it's inelegant, I have about 30 different operations to perform, some of them using several lines of code. I'd like to avoid this if at all possible. I could tolerate doing it 2 or 3 times, but not 30.
View 8 Repliesi am writing my very first program with visual basic 2010. my question:
textbox1 + textbox2 = textbox3 if i want to add textbox1 and textbox2 together and display the value in textbox3 WITHOUT creating a button for a command, what do i have to do?
basically, i want the value to appear in textbox3 automatically when i input textbox1 and 2.
I want to display the gmap ..if i enter City name in textbox1 and another city name in textbox2 then the gmap will display and the both cities will be highlighted in the gmap with its distances ...i wanna do this using vb.net, asp.net.
View 1 RepliesI was wondering how I can make textbox1 get divided by textbox2 at the click of button1. The number will go into textbox 3. I was also wondering how I can make the number round up or down. I also want all three text boxes to only accept numbers.show me the code in an easy to read format.
View 2 Repliesi'm trying to get the frist 7 charecters per line in texbox1 to copy over to text 2
here the code i gotso far but i keep getting a startIndex cannot be larger than length of string.
Parameter name: startIndex error.
Dim
newLines(TextBox1.Lines.GetUpperBound(0))
[Code].....
Possible Duplicate: cancel plane ticket before 4 hours of departure time if dep time is 08:00:00 AM then Passengers can cancel ticket till 04:00:00 AM ??
I have two textboxes textbox1 and textbox2 in asp.net(vb) webform I want If in textbox1 the time would be appear as 08:20:20 AM Then in textbox2 the time would be automatically generated 4 hours before as compared to textbox1 i.e ( the time in textbox2 the time would be appear as 04:20:21 AM )
Means simply logic i want ... if the time in Textbox1 is 08:00:05 PM then autogenerated time in textbox2 will be 04:00:06 PM Means whatever the time in Textbox1 the textbox 2 will autogenerate time in 4 hours time slot.
I want to make it so that Textbox3 is always 1 less than TextBox2, how would i do that?
View 1 RepliesI need to change the default windows pointer to this: not generally, just in my program. (Form1) There's a Pointer Control But I Dont Know What That Does.
View 7 RepliesI've got a 3rd party C application that's compiled to a non-.NET non-COM DLL. It has one simple function declared like so: Declare Function CapiTaxRoutine Lib "taxcommono.dll" (ByVal sInData As String, ByVal OutputData As String, ByVal intINPutLength As Long) As Integer
If I place the taxcommono.dll in my path (C:WindowsSystem32 is what I'm using because it's what the vendor recommends),I can wire up a call to the function and it works just fine.It returns a 1 or 0 for success/failure, but it also sets the value of the OutputData string parameter (using some C pointer magic I'm not familiar with) to a huge fixed width format return record that has the data I need.When I call it from a .NET .exe application, it works just fine.When I try to call it from an ASP.NET application via a referenced compiled .NET wrapper DLL, it runs but can't set that string.In order to get it to run, I can't have taxcommono.dll in my path, but rather have to place it in my Bin directory of the web project.Does anyone know of a reason it can set the pointer when called from an .exe application but not when called from a web app?The .NET wrapper DLL I'm using works when called from our ERP software, which is not web based. But when I add a reference to that same DLL in the web app, it won't give me that output value.am used to just getting a return value instead of a function setting the value of one of my input parameters.
In VB6 I have several child forms that have Subs and Controls with the same names.I need to access these Subs and Controls from public subs (in a module) that have a reference to the Active Form.[code]...
View 1 RepliesI'm by no means a good programmer and I'm just trying to wrap my head around some of this stuff, so please forgive me if this is a dumb question.I want the following to produce a message box that says "2", not "5":
Public Class SomeClass
Private SomeInt As Integer = 5
Private SomeListOfInts As New List(Of Integer)
[code].....
im in a project using drag and drop events and.. , when i drag a label image, i need to change te cursor pointer from an image that is on a labelike the SO windows when you drag a file appears like a mirror with alfa minimun so its like the image but more transparent when i drag i need to change the cursor pointer from an image that i'm dragging by the way im, using visual studio .net and im programming in visual basic
View 6 RepliesPublic Class Form1 Public Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As IntPtr Public Declare Function GetProcAddress Lib "kernel32" Alias "GetProcAddress" (ByVal hModule As IntPtr, ByVal lpProcName As String) As IntPtr
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim hmod As IntPtr = GetModuleHandle(Nothing) 'Work Dim addrs As IntPtr = GetProcAddress(hmod , "TestFunction") 'Not work, always NULL why??
How do I change my mouse cursor/icon to use a image or icon. I want to make a simple "wack a mole" type game but I dont know how to change the pointer to a icon or at least get a image to follow the pointer.
View 7 RepliesI have a form that has 100 text boxes with 100 coinciding labels. I want them hidden until another function populates the text boxes with data gathered elsewhere. The data could be between 1 and 100.
I would like one loop where I can assign the data to the correct text box, set it visible and set the label visible. I can not figure out how to do this in VB, or know if it is even possible.
Here is an example of what I would like to do
Dim i As Long = 1
Dim textbox As String = "textbox"
[code]....
I would also like to do this to hide all the items on the form in the on load event.
Private Declare Function src_simple Lib "libsamplerate.dll" (ByVal data As IntPtr, ByVal converter_type As Integer, ByVal channels As Integer) As Integer<br/>
Private Declare Function src_strerror Lib "libsamplerate.dll" (ByVal err As Integer) As IntPtr<br/>
<br/>
<StructLayout(LayoutKind.Sequential, Pack:=1)> _
[code]....
I'm trying to rewrite a C++ library. But I have an issue. I'm not extremely pointer-savvy. In the C++ class there is a std::vector that holds unsigned int pointers (vector<unsigned int*>), and the int pointer just points to an array of integer data.
Here is the C++ code I'm a bit unsure about:
unsigned int* relocation = m_relocations.front();
m_relocations.pop();
unsigned int* reloc = *(unsigned int **)relocation;
I am trying to use VirtualQueryEx to read the memory of a process (first instance of notepad in this case). This function returns a pointer to the MEMORY_BASIC_INFORMATION structure. I am trying to read this structure.But everytime I try to access a member of the structure, I get a zero, which indicates I am messing something up.I am copying my code here.
-Coder_in_distress
Imports System.Runtime.InteropServices
Module Module1[code].....
I am using a DLL written in C#, and one of its API's wants to be used as such, (this is the sample useage they give, but it is also written in C#)[code]...
View 18 Replies