Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: steve1rm
  • Order by date
  1. steve1rm

    Removing an object from a list

    Hello, VS 2005 I have the following code below and I would like to remove an object from the list. For Each timerToStop As Windows.Forms.Timer In emailTimerArray If (timerToStop.Tag = callID) Then 'Stop this timer timerToStop.Stop()...
  2. steve1rm

    Raising and handling events in 2 independant forms.

    Hello, VS 2005 Passing data using events between child and parent is not difficult. But how would you handle a event from another form that didn't create instance of that form. For example. form1, form2, form3. form1 open form2. form2 open form3. How can you handle an event in form1 which...
  3. steve1rm

    Timer control running in the background

    Hello VS 2005, I am developing MDI application. The user would like to have an timer running in the back ground that will send e-mail every 5 times. Sending the e-mails is not the problem, but how can I control the timer in the back ground. On one of the mdi forms the user will select...
  4. steve1rm

    Creating user controls

    Hello, Thanks for your reply, but the CF doesn't have that property. Steve
  5. steve1rm

    Creating user controls

    Hello, VS 2005 I want to create a user control for the compact framework. I have developed user controls before, however I need to create a control based on the CF tab control. Currently the tabs always display at the button of the control. The customer wants them to be at the top of the...
  6. steve1rm

    Assigning values to a combo box using CF 2.0

    Hello, I am creating a user control in the CF 2.0 for a PDA smart device. When the user creates an instance of the user control it will assign variables to the controls on the user control in its constructor. However, this works fine for all the controls, apart from the cboUsers, and cboType...
  7. steve1rm

    Application.StartupPath in CF 2.0 not exists

    Hello, Problem solved. I didn't set the xml file property to "copy if newer" or "always copy" Thanks, Steve
  8. steve1rm

    Application.StartupPath in CF 2.0 not exists

    I have created the path '\program files\PDACodeRedWM5\ and put the xml document inside it. but still get the following "file not found" Any suggestions will be most helpful. Steve
  9. steve1rm

    Application.StartupPath in CF 2.0 not exists

    Hello, This is using the Compact Framework 2.0, so cannot use the currentDirectory or startupPath, I have used the code below. However, the path i get is \programFile\PDACodeRedWM5 which is returned PDACodeRedWM5 being the name of my project. However, this path doesn't exist on my file...
  10. steve1rm

    Application.StartupPath in CF 2.0 not exists

    Hello, I am using the Compact Framework 2.0 I have an xml document I would like to read and write to. I have added the xml doc to my project, but how can I gain access to it when I can't use the application.startup path? Does anyone have any suggestions? Many thanks, Steve
  11. steve1rm

    Printing documents

    Hello Thanks for your idea, I was playing around with the process start, thinking that might be easier. But ran into a few problems with the process start. My code as follows: Try Dim filePath As String = "C:\TestPrint.txt" Dim psi As New...
  12. steve1rm

    Creating an update patch

    Hello, Does anyone know how to make an update patch for a VS 2005 window project. I have developed a CRM for some customers. However, the customers want some more development to it. I am wondering is there any way you can create an update patch that will only install the changes or add-ons...
  13. steve1rm

    Printing documents

    Hello, vs 2005 I have the paths of documents in a datagridview. The documents can be different types, e.g. excel, word, paint, photoshop. However, most will be word documents e.g. Path - c:\documents\job.doc c:\documents\task.xsl c:\documents\schedule.jpg All these are in a database and are...
  14. steve1rm

    Add a web reference to a web service during run-time

    Hello, I will give that a try and let you know. Thanks for your reply, Steve
  15. steve1rm

    Add a web reference to a web service during run-time

    Hello, I not sure that will work. The PDA application should be able to connect to any web service and use the web methods in that service. The reason is that if the web server where the web service is being hosted is move to another server, the user should be able to enter the new url in a...
  16. steve1rm

    Add a web reference to a web service during run-time

    Hello I have a PDA application that has been developed using VB 2005 smart device. The PDA has been designed to access a web service and download data from a database that the web service can access. However, the user will not know the location of web reference of the web service until after...
  17. steve1rm

    Access denied in saving the web.config file

    Hello VS 2005 I am using the code below to get and save the connection string in the web.config file. However on the webConfig.Save() line it throws an error: An error occurred loading a configuration file: Access to the path 'c:\inetpub\wwwroot\Incidents_WS\oa48wsfg.tmp' is denied...
  18. steve1rm

    saving and then undoing the changes of an insert statment

    I was thinking of doing something like holding the data in the memory of the typed dataset then clearing this if the user decides close the form. Thanks for any more help, Steve
  19. steve1rm

    saving and then undoing the changes of an insert statment

    Hello VS 2005 I am using typed dataset in my vb project. In my window the user will insert a new customer TA_Customer.insert(,,,,,,,) but if they change their mind and decide they don't want to insert a new one. Is it possible to roll back the changes. The customer wants be able to add a...
  20. steve1rm

    Saving data on a user control that is placed inside a tab control

    Hello Mansii, Thanks for your post and writing the code for me, i have just finished. However, I have done it a different way, and used your code a guide. If you feel there could be improvements then please feel free to comment on the code. Many thanks for your time and help, Steve Private...

Part and Inventory Search

Back
Top