Search results for query: *

  1. D

    Creating a custom installer.

    Hi, I am using VS 2005 Professional edition
  2. D

    Creating a custom installer.

    Hi All Visual Studio 2005 I have created a touchscreen application that is used to record production information. At the moment I am the only person that can setup this system as it requires a few steps to be done. What I am looking to do is create some sort of installer that will do the...
  3. D

    Help with splitting text into lines.

    @JohnH Perfect, exactly what I was needing, I also managed to use this with my Label On Paint function that changes the direction of the text. Thanks for the help. Regards Douglas Bell
  4. D

    Help with splitting text into lines.

    Hi All Sorry first chance of me getting to look at this again. Thanks for the replys @Solitare. I get an array error when using this its says "Index was outside bounds of the array" @ linewords(w) = word & " " @JohnH I am creating the labels automatically so using Direct Cast to change label...
  5. D

    Help with splitting text into lines.

    Hi All I have a database application that basically recreates a spreadsheet form for data entry. I have used a Table Layout Panel so that the cells, using Textbox Controls and the Column / Row headers using label controls can be dynamically created based on what selection criteria is used. It...
  6. D

    Image Formula in Crystal Reports?

    Hi All I have a small reporting application that uses Crystal Reports that is built into VS2005. My form has a Crystal Report Viewer a Combo Box and a button. The Combobox looks at an SQL database for a pallet number then sets whatever is in the Combo Box as a parameter for the Crystal...
  7. D

    Help with streamline program.

    Hi Had a look at the BackgroundWorker Class and its a bit beyond me, so I am a little stuck. I have a timer TmrUploadResults that every 5 seconds it calls a sub UploadResults. Upload results is basically an update query to the central server. How would I use the Background worker to take the...
  8. D

    Scaling Custom Controls on a Form

    Hi All I am creating a custom control that will have several labels and text boxes. There will be up to 8 of these controls displayed on a form. The form size is 1920,1080 so I am desiging the size of the control as 470,518 so I can fit 8 on the screen size. What I would like to do is when...
  9. D

    Help with streamline program.

    Hi All Just been asked another question. My management now want to have a central screen that displays the current status of all the touchscreens, the information has to be as real time as possible. So I wrote a view on the local SQL database that basically collects all the information the...
  10. D

    Help with streamline program.

    Hi All I have created a simple touchscreen system that inserts a value into a local SQL database depending on the button pressed. The buttons are generated dynamically from an Ini file. So I can have this touchscreen on lots of systems and only need to change the ini file for different...
  11. D

    Controlling remote Windows Media Player

    Visual Basic 2005 Hi All I have an information screen that displays messages and runs a video. I would now like the reception to take over of controlling this so I want to write a very simple app that lets the reception from her PC control the various things. I have the app working with the...
  12. D

    FlowControlPanel control alignment help

    @jmcilhinney Thankyou. I never even gave creating my own control a thought, I have just created a test control and it does exactly what I need. Thanks Dj
  13. D

    FlowControlPanel control alignment help

    Hi All I am trying to automatically create a series of 2 labels on a FlowControlPanel but I just cant get the allignment correct. I have the following coded. Dim x As Integer For x = 0 To 50 Dim lbl As New Label() Dim Tlbl As New...
  14. D

    For Each Loop Help

    Hi Ian All my buttons work perfectly, and I have implemented my Back and Next buttons, so thanks for the help. The only real change to your code was I had to change MyDict(x) to MyDict.Item(x). As for my error checking, I was having problems with a particular error and got fed up with the...
  15. D

    For Each Loop Help

    Hi Ian Thanks for the help. The i was a typo in my code its x. I should have noticed that 0 + 1 = 1 and not 0, school boy error on my part, also probably the biggest issue I am having is I have too much error checking but not letting the program do anything if it finds an error so it ignores...
  16. D

    For Each Loop Help

    Hi Thanks for the reply and help it is appreciated. I tried your code doing the following but I no longer get any values on my buttons. I was hoping the below example would give me the first 6 buttons. I think its probably the way I have implemented the code. Dim MyDict as Dictionary(of...
  17. D

    For Each Loop Help

    Hi Thanks for the reply, the code I am using to create and read the XML was created by another user, I really dont have the knowledge to change the code to do the above. Cheers DJ
  18. D

    For Each Loop Help

    Hi All I am using the XmlSerializer to create an array of items Once created I am using a For Each Loop to go through these items. Buttons are created based on these items. For Each node As MyNode In myNodes Dim btn As New Button() With btn...
  19. D

    Touchscreen System button help.

    Hi All I am still struggling to pull sub levels dynamically (So I dont have to program a routine for each level as that would mean I would have to edit the program everytime a new sub level that had not been programmed for was introduced) from the above, any help is appreciated. Regards DJ
  20. D

    Touchscreen System button help.

    Hi All Ok a little further in using the XML file posted above I now have my program look through the XML file and pickup the main buttons on load. I am struggling on how to get my sublevels working on the onclick event but I am working through this, here is how I am picking up the main buttons...
Back
Top