Search:

Type: Posts; User: UncleCake

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. VS 2010 Re: Search Results Displaying While Search, Like in a Browser

    Thanks, Thinking about it now, I probably wouldn't do an auto complete, but just display possible results and allow a use to select one of them.
  2. VS 2010 Search Results Displaying While Search, Like in a Browser

    I want to add a feature to an existing search box that I have that looks like when I type in a browser it has a box under the text box that has four or five results in it. How is this done? Is it...
  3. Replies
    1
    Views
    974

    VS 2010 Sign ClickOnce manifests

    I am kind of confused after reading many different things on the net about signing a ClickOnce manifest. I am distributing an application on the network for in-house use only (if that helps). I don't...
  4. Replies
    2
    Views
    4,550

    VS 2010 Form Icon for All Forms

    I have one program with many, many forms in it and the same program is used for two companies. Basically, when a user starts the program the data location is set depending on which of the two...
  5. VS 2010 Re: Remove Item from List(Of Integer)

    I was able to resolve this. I found this function:

    Find(Function(value As Integer) value
  6. VS 2010 [RESOLVED] Remove Item from List(Of Integer)

    I am having problems removing an item from a List(Of Integer). I see you can remove it by doing a remove with the index, but I assume you can do some type of function where you provide the value that...
  7. VS 2010 Re: Class, Passing it, not sure how to ask this question

    Thanks cicatrix, I will remove the call to ShowCall() out of the form's constructor. Thanks again for yours and John's help.
  8. VS 2010 Re: Class, Passing it, not sure how to ask this question

    Thanks guys for your great help! I started the changes and then modified them a bit after I read cicatrix post. Here is what I did (the names are good enough for testing).

    In my parent form I...
  9. VS 2010 Class, Passing it, not sure how to ask this question

    With lots of help from tg, I have been plodding through a project that I am trying to rewrite in VB NET form VB6, but I have ran into a roadblock. I now have some questions if there is a better way...
  10. VS 2010 Re: Child Form tell Parent Form it is Closing and send ID

    Thanks tg, my tests show that this works. I am going to post a new follow-up question because it is kind of related, but not really.
  11. VS 2010 Re: Child Form tell Parent Form it is Closing and send ID

    I currently use the MdiChildren property when I look for other child forms that have the same name by looping through them (Me.MdiChildren(i).Text = strName).

    I am not sure if you are describing a...
  12. VS 2010 Child Form tell Parent Form it is Closing and send ID

    I have a parent form that has a list of items and each item has a unique ID. The user can open one or many of the items in a child form (it is set up in a tabbed MDI), but it can only open one...
  13. Replies
    1
    Views
    2,435

    VS 2010 Nested MDI Parent/Child Forms

    I have a MDI project that has a parent and several children forms. In some of the children forms I would like to make one of the forms to be a parent form with children. On this child form I wanted...
  14. VS 2010 Multiple Forms in Tab Control and Just Shown

    I have been going a couple of directions as I learn and try to figure out more. Basically, I have a form that has a tab control that contains 6 tabs and tons of controls on each tab. They are like...
  15. VS 2010 Re: Why Install Program or Run From Published Location

    I used the ClickOnce in my VB 2005 project and it has worked well in the past, but yesterday I ran into a careless issue. When I published a new update (which happens very often) somehow I unselected...
  16. VS 2010 Why Install Program or Run From Published Location

    In the past I have written VB6 and VB NET 2005 programs that are installed and on the user's computer. This had to be done because the salesmen in our company have has a set of local data on their...
  17. VS 2010 Re: New to Message Queue - Multiple Instances of Program

    Great, thank you very much!!
  18. VS 2010 Re: New to Message Queue - Multiple Instances of Program

    Sorry, for me lack of knowledge, but I think it is the message queue. I had some help building it here at this post.

    It looks like we are on the same page with each instance having a unique hWnd,...
  19. VS 2010 Re: New to Message Queue - Multiple Instances of Program

    I have a parent and child form. The child form send a message into the queue for the parent form to receive and perform a function. My concern if the messages would get picked up by the other...
  20. VS 2010 New to Message Queue - Multiple Instances of Program

    I am using a message queue successfully as I am testing while I am writing a new program. (This is my first time using a message queue.) I have to have multiple instances of my program running, so I...
  21. Replies
    2
    Views
    795

    VS 2010 Re: Form in Tab or Panel

    Thanks .paul, I think that this will work out from the quick test I did. I will have to try some of the more advanced portions of the program to see if it will work out completely.
  22. Replies
    2
    Views
    795

    VS 2010 Form in Tab or Panel

    I am moving a project from 2005 to 2010 and I wanted to make some changes. Currently I have a customer form that has a 3rd party tab control in it. A few of the tabs are Customer Information,...
  23. Replies
    10
    Views
    4,823

    VS 2010 Re: Call Sub in Parent Form

    I had a little scare and I was wondering if I did this correctly. As I said, there will be multiple child forms calling the same sub in the parent form. Two of the forms are the CallsOnHoldForm and...
  24. Replies
    10
    Views
    4,823

    VS 2010 Re: Call Sub in Parent Form

    Okay great, it is kind of what I thought. So, on the form load I should put this

    myObject = New List(Of ObjectClass)

    And then on each places that I open up new child forms I will have this (but...
  25. Replies
    10
    Views
    4,823

    VS 2010 Re: Call Sub in Parent Form

    Hey tg,

    I have been working on your example, which is neat (thanks!!). I haven't done this type of programming before. Now that I am in it more I have been thinking about the overall project. Like...
  26. Replies
    10
    Views
    4,823

    VS 2010 Re: Call Sub in Parent Form

    After looking at this some more, I don't think that this will work for me. My child form is basically open all day long right long with my parent form. The child form cannot be modal as I need to...
  27. Replies
    10
    Views
    4,823

    VS 2010 Re: Call Sub in Parent Form

    Let me first say that I did not write it, I am just converting it, so please don't hold that part against me. :)

    Thank you for your help! I looked up what you referenced and I am going to try it,...
  28. Replies
    10
    Views
    4,823

    VS 2010 Call Sub in Parent Form

    Hi, I am trying to create a project in VB 2010 like I have in VB6. In VB6 I have a parent form which opens a child form. The child form displays calls (customers) on a spread sheet control that are...
  29. VS 2010 Re: Button Color Change on Rollover-ControlTemplate?

    Perfect and it works great! Thank you so much, I really appreciate it. It has taken me hours to get to this point.

    Thanks again!
  30. VS 2010 Re: Button Color Change on Rollover-ControlTemplate?

    I was looking at a tutorial like your example. The problem now is that I don't know what to do from here...
  31. VS 2010 Button Color Change on Rollover-ControlTemplate?

    Hi, I am just staring off using VB 2010 after using 2005 for a while. In 2005 I used a third party control to automatically make a button a default color and when the mouse rolled over it, it changed...
  32. Replies
    3
    Views
    1,347

    Re: VB 2005 EXE Only Deployment using Citrix

    Thanks tg, that was my conclusion as well. Do many people say to just use the .exe file if it is a simple small program without any add-ins?
  33. Replies
    3
    Views
    1,347

    VB 2005 EXE Only Deployment using Citrix

    I have been using VB NET 2005 and Once Click Deployment for a large application that I use. I now need to put the application on a Citrix server as just an .exe so multiple users can access it. I...
  34. VS 2005 Re: Printing Variable # of Copies in One PrintDoc

    Thanks guys, I will guess I will accept it and move on. :)
  35. VS 2005 Re: Printing Variable # of Copies in One PrintDoc

    I wrote the code to loop through the printDoc to match the number of copies needed. As well, I had to deal with some rows not needing to be printed at all, but I made it work.

    I would have to...
  36. VS 2005 [RESOLVED] Printing Variable # of Copies in One PrintDoc

    I am looping through a spread sheet control that has some part number and a quantity of labels that need to print for each part number. Can I use one print doc and set the copies for each page...
  37. Re: If-End If Logic, Can You Figure it Out?

    You all are great! After studying all three replies, I think I understand it, but I don't totally grasp all aspects of it yet. I made some examples that I am working through. As you all wrote, this...
  38. [RESOLVED] If-End If Logic, Can You Figure it Out?

    Hi, I am updating some code and I can't conclude what the logic in this statement does. I see in the first part the inCustomerRating has to be < 3. What I don't get are the next two parts. I have...
  39. Re: Advanced Printing, multiple documents, 1 print job

    Okay, so I have been studding the examples and trying to figure out Jenner’s example. I have been able to figure out how to print the header information in a separate sub, which is one thing that I...
  40. Re: Advanced Printing, multiple documents, 1 print job

    In the code below is from my form. In this case, the user enters an invoice range that they want to print. It will print the appropriate number of copies depending on the invoice type. It will set...
Results 1 to 40 of 63
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width