Capturing MouseDown/Up Through Child Controls In A Mobile .NET Application
Feb 27, 2009
I want to implement basic finger gestures within one of my apps, but have got stuck at the first hurdle. There are a few examples on the net, but they seem to use custom controls that do not allow easy use of other controls. I really just need a way to capture the MouseDown/Up methods even through a child control, still allowing clicks to be captured by whatever control has been clicked.
[Code]...
View 3 Replies
ADVERTISEMENT
May 24, 2012
I have a vb.net application that uses ShowDialog() to open child screens.
Long story short, I had issues with focusing the control if I opened IE on top of my program without minimizing the program. Once I reactivated my program and closed a child window, IE would show again instead of my program. I fixed this by setting the owner of my form.
Now I have another issue. After setting the owner, the parent (text) name of my form is now being shown at the top of the application when a child screen is open instead of the parent name. How can I fix this to show only the child's text form name when a child screen is open?
View 1 Replies
May 31, 2010
Dim img As New Windows.Forms.PictureBox
img.Location = New System.Drawing.Point(newx, newy)
img.BackgroundImageLayout = ImageLayout.Zoom
img.Size = New System.Drawing.Size(100, 100)
img.Name = "img" & t
I need a mousedown function to cover all the images that are produced by the above code.The following code only affects the areas that aren't covered by the images. I just need something that covers the whole form
Private Sub main_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyClass.MouseDown
MsgBox(Me.GetChildAtPoint(e.Location))
End Sub
View 1 Replies
Sep 17, 2011
SMS Sending application in vb.net using GSM Modem of Mobile & AT Command where mobile numbers are dynamically coming from sql server database.
View 1 Replies
Jun 22, 2011
how to view and populate a listview with a text file. Now I come seeking wisdom on how do create an effect based upon the location where a mousedown event occured.
Here is my example. (I like to give simple examples because it helps me learn rather than be given the answer and learn nothing).
I am working in vb.net, in a windows form. I have a map of Western Europe called picturebox1.
I want another form to pop up when a user clicks on a section of picturebox1. For example: I want a "Germany" form to pop up when the user clicks on Germany. And such for if France, Spain, Italy, Austria, England, Scotland, etc...based on the location of the mousedown event.
Historically, when working with a picturebox with sections that were rectangle, I would do little screenshots and overlay them over the picturebox and use that as a cheat.
The challenge here is that the countries are polygons and now I need to learn this for real. I am looking for a little direction on where to go to learn about a mousedown event that causes an effect based upon the location of the mousedown event.
This can be a challenge because each country is of different x, y location coordinates so I image I need to create an elaborate if or case statement to capture and evalute. However, I don't know how to acquire the coordinates of a mousedown.
View 1 Replies
Nov 12, 2009
I would like to create a mobile application for Windows Mobile, how can this be done? I have Visual Basic Express edition.
View 4 Replies
Apr 15, 2010
I have a slight problem With an enumaration of child controls on a form. The following code will not get but about have the controls that are on the form. The controls show that the count is correct but when it goes through the loop it skips over some of the controls. If you run it through the enumeration two or three times it will get all the controls a few at a time. The solution uses two forms, one that has the controls and the other that labels are made and displayed on. The Tx is just a index to add a number to the label.name and rename the label. So each label is identified seperately. This works for all the the controls that are seen in the for each loop.
View 11 Replies
May 13, 2011
I have a vb.net windows application. I want to convert some part of it to an application that can be run on all mobile platforms like iphone,windows mobile, ipad etc. It should be platform independent
View 1 Replies
Oct 27, 2009
I have a console application where I successfully have added custom menu item in the application's system menu using the Windows API calls. How do I hook into the events to capture the event raised when the user clicks on one of these menus? All my Google results talks about overriding the WndProc method, but this doesn't exist in a console application.
View 3 Replies
Mar 9, 2011
I have an application that is written in VB.NET, using the System.Windows.Forms.Form as the front-end GUI. It runs perfectly on my Windows machine however recently there is a business requirement to convert this application to run as a web application so that people could view them in their blackberries when they go to the URL. Is there any quick way to perform such a conversion or I will have to translate the code line-by-line for such cases?
View 1 Replies
Apr 29, 2009
findwindowEX Send Message in Child of a Child of an ApplicationFirst:- my english is very ad (german)- i am a newby of Visual BasicMy Form with SQL-Integration is sending Data per Button to Notepad sucessfull. Unfortunately, the purpose application has interlocking children.But the application don become the data. to found a solution / or a Idear. i think i put in screenshots an my
Public Class Form1
'Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[code].....
View 5 Replies
Aug 2, 2011
I have created an application with 3 terminal windows for capturing data from 3 serial ports and outputting the data to a file. It seems to work well with one serial port, but when I fire all 3 serial ports at once, the application hangs. Here is the portion of the code that I believe is the problem. The code below is for Serial Port A. I have the same code for Serial Port B and Serial Port C
Private Sub ASerialPort_OnComm() Handles ASerialPort.OnComm
ReceiveBufferA.Append(ASerialPort.InputString)
Me.BeginInvoke(New EventHandler(AddressOf ReceivedTextA))
[code].....
View 3 Replies
Mar 9, 2010
Hi.. Im using an application to capture selected part of screen by resizing the form and capturing area of it!! now i want to reset the form once my work id done!! i mean if i press a "RESET" button the form should be load as first time it was loaded.(the real form size..)
View 1 Replies
Sep 14, 2009
I dont know use application.restart() in vb.net i dont found this command
View 2 Replies
Mar 16, 2010
How can I read SMS from mobile with my .net application? i have a Nokia 5310 mobile phone. Can you tell me from where i can download Nokia SDK or source code or Nokia API etc?
I want to make a custom application which reads SMS and at the same time sends a response to the sender's mobile number.
View 1 Replies
Jun 20, 2010
I would like to develop a very very very simple application which will connect the MS SQL SERVER in my notebook and will be run at hand terminal-with windows mobile 6.Here is the code which i used :
Dim strSQL As [String] = "SELECT COUNT(studentid) AS totalp from Students where gender='m' "
' Dim Conn As New SqlConnection("Data Source=10.0.0.4MUSTAFASQL2;Initial Catalog=MYDBX;User ID=TEACHERA") <<< i used this too,
' Dim Conn As New SqlConnection("Data Source=10.0.0.4:1433MUSTAFASQL2;Initial Catalog=MYDBX;User ID=TEACHERA;") <<< and also tried this[code].....
View 2 Replies
Feb 25, 2010
i need to send datas to mobile application developed using java can i send datas from vb.net windows application to java mobile applications can anyone tell me what is the simplest and secure way to send data from vb.net windows app to java mobile app
View 1 Replies
Oct 15, 2011
First of all I want to thank "codeorder" for sharing me this code. Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
[Code]...
View 2 Replies
Dec 9, 2009
Is There Anyway To Use The TableLayoutPanel Control In A Mobile Application
View 1 Replies
Oct 16, 2011
How can all Child controls be removed at ones, instead of removing them one by one with this code below?
FrontPictureBox.Controls.Remove(Titel_Label)
Hendri Bissolati noviceprogrammer@vodamail.co.za
View 2 Replies
Jun 12, 2012
I have an MDI windows form setup. On load it sets the child form(frmMainData) and opens it.
I have a progress bar on my child form that I wish to show(set to visible = false in design)
I have menu strip on my parent form.
For simplicity I have just set the command against one of the menustrip options to do the following[code]...
View 3 Replies
May 20, 2012
i would like to build an inventory manager application that would have two versions :1. Would run on the desktop 2. Would run on windows mobile 6 I would like to have both these versions store and read data from a database that can be stored centrally either on a webserver or somewhere on the LAN.
I would like to know can i use Access as my backend database or sql server ? will windows mobile app be able to access it and read and write to it Note : I would prefer to create only one database that will just store the details in the tables and do not need any other functionality. All functions such as save,edit,delete,search,filter etc with be done from the FRONT-END VB.NET interface ONLY If you suggestion involves the use of 2 databases such as one for desktop version and one for windows mobile then please also tell me how would i sync the data between them.
View 1 Replies
Jan 24, 2011
How can I create application for Nokia mobile phones
View 1 Replies
Mar 19, 2010
I want to create application to send message to Mobile by SMS , But I didn't know what the requirement for this and what the steps to make this application?
View 1 Replies
Mar 17, 2010
mobile phones attached via USB odr WLAN or BT do no support TAPI
I have 2 questions:
1. is there an possibility, to send a call-Command to my mobile phone (Windos Mobile 6) ?
2. when i click to a "callto:"-link in my sugar-crm - skype opens is there a way to tell windows to open a different application ?
View 3 Replies
Jun 9, 2011
Is Mobile PC suit required for sending sms from vb.net application? Is any kind of SMS Gateway needed for sending sms?
View 1 Replies
Aug 25, 2010
I m trying to connect sql server to mobile device but dont know were to start
View 2 Replies
May 17, 2011
In the project I'm working on, I was editing a class and when I got done, I clicked save all. I moved on to my main form's designer. When it came up, the custom tab control I have on the form was blank. There used to be a ton of controls in it, so I am extremely confused about where everything went.I checked the properties window and it thinks everything is still there:ut when I check the Document Outline window, everything is gone. The tab control is still there, "AVERT Wizard", but all of it's child controls and tab pages are gone.
View 2 Replies
Feb 12, 2010
Is it possible to create a mobile application with VB.net 2008 express edition. I've done some research and some places have said that you need the professional edition.
View 1 Replies
Apr 14, 2009
what database i need to use for PDA application? EDIT: Title edited to be more descriptive
View 2 Replies