Search results for query: *

  • Users: zack
  • Order by date
  1. Z

    Pointer Dragdrop

    Erhm... Just 1 more question... How do you change the mousepointer icon to a custom icon?
  2. Z

    Pointer Dragdrop

    Hi all, This is my solution: Private Sub PictureBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseDown bDragging = True sx = e.X sy = e.Y End Sub Private Sub PictureBox1_MouseUp(ByVal sender As Object, ByVal e As...
  3. Z

    Pointer Dragdrop

    Hi all, I want to have the pointer in my PPC which can actually drag a map/picture when the user clicks on it. Any ideas how to do it?
  4. Z

    Receiving SMS

    Hi guys, I'm able to do the example already. Thanks for your patience and help! :p
  5. Z

    Receiving SMS

    Hi JuggaloBrotha, Have you tried the sample yourself before? according to Maarten's article, I can successfully deploy it using the pcoket pc 2003 emulator, but there is a problem when I deploy it to my pocket PC. These are the steps that I followed: 1) Build the mapirule successfully 2)...
  6. Z

    Coding Error

    Hi all, I've got some errors I need your guys help. The error of: Value of type 'Integer' cannot be converted to 'System.UInt32'. occurs within this function. (In red) Private Shared Function AllocHGlobal(ByVal cb As IntPtr) As IntPtr Dim hmem_Renamed As IntPtr hmem_Renamed =...
  7. Z

    Receiving SMS

    Hi JuggaloBrotha, Thanks for your help. But this program uses embedded visual C++ and vb .net at the same time -> it seems too profound to me. It is possible for me to send you my codes and hope you could spare some time on it to help me convert it to vb .net? Please kindly leave your email...
  8. Z

    Receiving SMS

    Hi JuggaloBrotha, I think you misinterpreted my call for help. I actually asked if there is anyone with a vb .net code that has the ability to retreive SMS from the inbox and possibly even detect a new incoming SMS. Sorry about that. :(
  9. Z

    Receiving SMS

    Hi all, I've found out that this example actually shows you how to send messages, and it also has the capability to read received SMS. But it is not shown, Does anyone know how to do it? This is the link...
  10. Z

    Multiline Textbox

    Thanks strider, It did the job. Cheers ;)
  11. Z

    Multiline Textbox

    Hi strider, these are my codes for inserting the text into my textbox... With FilteredText .Text = vbCrLf + "Current Location: " + Data .SelectionStart = .Text.Length End With It workes in a way that whenever I click on a button to dosplay the captured text, it overwrites the...
  12. Z

    Receiving SMS

    :( Hi all, Do anyone here has an example on receiving SMS besides the one from MSDN? Because the one from MSDN is giving me a terrible headche. I need a pure vb.net program. Thanks a million!
  13. Z

    Multiline Textbox

    Hi all, Just a noob question... How do you insert lines into a multiline textbox from some captured data? (other steps besides setting the multiline property as true)
  14. Z

    Open File

    Yo! Thanks for your help Kulrom! It worked! Cheers!
  15. Z

    Open File

    Thanks kulrom, you are of great help! But there seems to be a problem when the program is trying to get the image file as this error occurs: An unhandled exception of type 'System.IO.FileNotFoundException' occurred in system.drawing.dll But I'm 100% sure that I had that file placed in that...
  16. Z

    Open File

    This instance only open a textfile Dim srReader As New StreamReader("c:\test.txt") TextBox1.Text = srReader.ReadLine what if i want to open a shapefile? Dim Reader As New System.Drawing.Image("c:\25.jpeg") PictureBox1.Image = Reader 'New' cannot be used on a class that is...
  17. Z

    Open File

    Hi JuggaloBrotha, what if this file I'm trying to open is not a text file. But a file of some other type, like a shapfile(.shp). Can I stil use this method to open it too?
  18. Z

    Searching for text in a RichTextBox control

    Erh... Nope Can you please guide me through or do you have any samples to provide? Sorry about the inconveniece caused.
  19. Z

    Open File

    Hi all, how do you open a specified file without using the openfiledialog method?
  20. Z

    get text from multiline textbox from another program

    Hi all, as you can see from my topic, I would like to ask whether the 'GetWindowText' Function would do the job. Thx!
Back
Top