Search:

Type: Posts; User: heyu

Page 1 of 6 1 2 3 4

Search: Search took 0.09 seconds.

  1. Re: Encrypt and Descrypt, can't find solution

    What is currently being saved in my.settings? Also no one will download a compressed file, so you should just post the plain text of these files; in addition if you post code you can use the go...
  2. VS 2005 Re: How do you get the coordinates of a button on another application?

    I have a feeling this button is not a typical one windows is used to dealing with, because I used spy++ with the drag and find feature but I could not pick up the button only the container that...
  3. Replies
    2
    Views
    4,822

    VS 2010 Re: Help With Hospital Charges Form

    Well this would be needed:



    'Calculate total charges

    Dim Total As Decimal

    Total = CType(txtCharges.Text, Decimal) + CType(txtFees.Text, Decimal) + _
    ...
  4. VS 2005 How do you get the coordinates of a button on another application?

    I am not sure where to start with this; My goal is to automate a few button clicks in another application that I did not create. I see some examples where you need x and y coordinates of the button...
  5. Replies
    5
    Views
    859

    VS 2010 Re: SendMessage help to an external program

    Thanks for everyone's feed back on this! Here is what I have so far it did work but I wanted to know what you guys think:


    Private Sub Button1_Click(sender As System.Object, e As...
  6. Replies
    12
    Views
    2,402

    Re: VB Array Problem w/ Calculations & Assigning

    OK thanks for the reply back.
  7. Replies
    5
    Views
    859

    VS 2010 Re: SendMessage help to an external program

    What about using the Windows Handle 007805D0 is this an option?
  8. Replies
    12
    Views
    2,402

    Re: VB Array Problem w/ Calculations & Assigning

    I tried to run this in VS 2005 but had a few issues. Does anyone know why?
  9. Replies
    12
    Views
    2,402

    Re: VB Array Problem w/ Calculations & Assigning

    can you post the declarations for this then I will try and run it.
  10. Replies
    12
    Views
    2,402

    Re: VB Array Problem w/ Calculations & Assigning

    I am thinking your text file contains number grades......if you can post the text file called Scores.txt that may help. But here is what I am thinking:


    Dim gradeLetter As String
    For k...
  11. Replies
    5
    Views
    859

    VS 2010 SendMessage help to an external program

    Hi guys,

    I am not sure how this works yet but I am using spy++ (see pic) but it looks like the text box I am trying to send text to does not have a class name or description will this be a...
  12. VS 2005 Re: Caller ID code (sample included) ....but I need help!

    Thanks guys, that seems to be working now after my first test. Here is what I did in addition...

    'disconect the call
    SerialPort.Write("ATD" & vbCrLf) ' connect to...
  13. VS 2005 Re: Caller ID code (sample included) ....but I need help!

    I am surprised no one knows this......:confused: but I am making progress, I can now at least stop the ring using ATD, now I need to hang it up I tried a few things like ATH but no luck yet.

    ...
  14. Re: VB.net application: Changing size of forms on different computers

    Interesting......I thought you could set the form size?
  15. VS 2005 Caller ID code (sample included) ....but I need help!

    Hi guys, I through this code together from examples I found here but I need help with the bottom line that says "disconect the call" not sure how to handle this part?? I am using a Dell...
  16. Re: issue with System.Drawing? Why do my lines drawn on my form erase?

    Hey great! Thanks for the reply guys!!

    How do you do the vb.net code tags when posting??
  17. Re: Hey, im working on a programing project and need some help with the codes

    How about a chart? I know you said table so if that is the case then I like the DataGridView idea.

    Chart: http://www.linglom.com/2010/05/11/creating-graph-with-vb-net-part-1-basic-chart/
  18. issue with System.Drawing? Why do my lines drawn on my form erase?

    I have a sub in a windows form project and when I run the code I draw some lines on the form itself, my problem is if I pass another window over this form it erases part or all of the lines, just...
  19. Replies
    5
    Views
    5,391

    Re: Get caller ID from serialport!

    I know this is an older thread, but I am playing around with this code and having some fun with it. I was wondering if there is a way to block a call if I get NAME = UNAVAILABLE or NAME = O; or can...
  20. VS 2005 Re: old office 2003 exe program on XP no longer connects to Access 2010 when using Wi

    Well, today I first decided to first look at my code (its a small program) and I first put Option Explicit On, I had a few items in my code I had to fix. Then I compiled for x86, and I noticed it did...
  21. VS 2005 old office 2003 exe program on XP no longer connects to Access 2010 when using Win7?

    I only have XP and VS2005 on hand, but I tried a different connection strings, compiling for x86 only; I am thinking my system can't get the correct .dll or I hear no 64bit driver for my old...
  22. Replies
    16
    Views
    4,815

    Re: How do I get started programming a Pocket PC?

    @Lightning Thanks for the info, I do have VS 2005 so looks like I am good. I don't think I will get the smart phone.......

    I am liking the iPod touch, but I am not set up for that type of...
  23. Replies
    16
    Views
    4,815

    Re: How do I get started programming a Pocket PC?

    Hey Gary,

    Actually I am open to ideas, and I have to admit I have never owned a smart phone simply because I can't afford the monthly data plan. Can I use a Windows phone without a calling plan...
  24. Replies
    16
    Views
    4,815

    Re: How do I get started programming a Pocket PC?

    I found this SDK down load http://www.microsoft.com/en-us/download/details.aspx?id=42 and it looks like if you already have VS-2005 it will load the templates needed into it. Here is a few pics; VS...
  25. Replies
    16
    Views
    4,815

    How do I get started programming a Pocket PC?

    Hello,

    I hope someone can help me get started; I am looking to buy a Pocket PC so I can create some basic programs using the .NET framework but I have read some conflicting or not so good info...
  26. Replies
    0
    Views
    751

    Need ideas for my new project

    My new project needs to manage files in many different locations on a typical PC. When I say manage I mean something like how a PLM would work, but just a simple version of it. So it needs to...
  27. Replies
    2
    Views
    965

    VS 2005 Re: help with doc.StoryRanges

    Originally I was trying that but got some exception on the "wdxxxxx" lines. But after seeing your post I gave it another try and added some extra references and now its working.

    Thanks for...
  28. Replies
    2
    Views
    965

    VS 2005 help with doc.StoryRanges

    Hey guys!

    I am looping through a word doc where I need to find a string to replace and these are in text box's so I thought I could do something simple like this but its not working. Any...
  29. Re: Example of how to get a list of installed programs (like Add and Remove Programs)

    I was kind of thinking of garbing that UninstallString and putting it in a toRemove arraylist then loop that list using process wait on a local pc only. Of course the user would have to select what...
  30. Re: Example of how to get a list of installed programs (like Add and Remove Programs)

    Very nice job!

    But I have to say I would be interested in a way to say, select a bunch to be batch uninstalled. I did read post #13, I guess we should be able to expand on this ourselves, so...
  31. VS 2005 Re: How to close and save Excel and avoid the pop up "Save Changes Made" ??

    Well you actually helped me, cause I did a google search on ActiveDocument and came across this post:

    http://www.vbforums.com/showthread.php?t=464544

    So from the link this worked:

    Dim i As...
  32. VS 2005 How to close and save Excel and avoid the pop up "Save Changes Made" ??

    I have VB.net code (2005) that updates an Excel (2003) file but on close I get a pop up from Excel when my code is trying to close it. How can I close and save changes and not get the pop up? I tried...
  33. VS 2005 Re: WebBrowser1 - how to stop pop up or get pop up url?

    Well it looks like I need to start doing a slightly more advanced project. Thanks guys for pointing me in the right direction.
  34. VS 2005 WebBrowser1 - how to stop pop up or get pop up url?

    I made the typical web browser, but when I click on some links instead of it opening in my program, it opens up IE. How can I simply make my program the default web browser to use?
  35. Replies
    4
    Views
    756

    Re: Debugging Help in VS 2005

    Great, I am good with that!

    Thanks for the advice.
  36. Replies
    4
    Views
    756

    Re: Debugging Help in VS 2005

    Well my 2005 version was given to me by my school, not sure if I can update that BUT I will ask if a 2008 version is available.

    My VB.NET debugs fine no issues there either. I guess for now I...
  37. Replies
    4
    Views
    756

    Debugging Help in VS 2005

    When debugging my c programs in V.S. 2005 is there a way or option to change so my debugger can avoid all the library files? For example when it finds a printf function it opens printf.c and I step...
  38. VS 2005 Re: Problem adding to a ListBox1 from a class to a Form

    Yeah, I tried absorbing what you said and tried some changes but this is really got me still........But hey no pain no gain so I need to study up some more!

    :ehh:
  39. VS 2005 Problem adding to a ListBox1 from a class to a Form

    I have a function in a Class that executes some code, in the function I am trying to populate the ListBox1 on another form but I am having trouble. Here is what I tried so far:


    'bellow data is...
  40. Re: is there a way to protect a Access database?

    Ah, I see.......well I guess once the pain is over then its a good skill to have!

    I work in a very large company also, Oracle is the main database but unfortunately in my company a private company...
Results 1 to 40 of 227
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width