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
  • Content: Threads
  • 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, 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...
  5. 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...
  6. 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
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. steve1rm

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

    Hello, VS 2005 I have user control that has been placed on many tab pages. The tab control is not part of the user control. The user control consists of text boxes and combo boxes The user can add new tabs and enter the data into it the user control and click save which is also part of the...
  13. steve1rm

    Getting data back from a user control to a parent control

    Hello, VS 2005 I have a user control. On the parent form i have placed my user control inside a tab control. Inside the user control i have fields for saving and deleting tasks. When a user wants to delete a task the taskID is taken from the tab name and passed to the user control in a public...
  14. steve1rm

    User controls and Typed dataset

    Hello, [VS 2005] I have created a user control that has a tab control, text boxes, combo boxes. I have a typed dataset with some datatables and tableAdapters for doing the inserts and the delete, and updates. I build the control and when I want to use this control in another project. 1) open...
  15. steve1rm

    Modify connectionstring at runtime

    Hello VS 2005 I have my connection string in the web.config as I am developing a ASP.NET website the code as followings appSettings connectionStrings add name="serviceMasterConnectionString" connectionString="Data Source=CF_DEVELOP\realitysql;Initial Catalog=ServiceMaster;User ID=assword="...
  16. steve1rm

    Adding controls to a tab control at runtime.

    Hello, VS 2005 This works but i am wondering is there a better way to do this. I will be having combo boxes, text boxes, buttons and list boxes and labels. The layout of each tab will be the same. As the user click add task it will add a new tab the controls will be added and some controls...
  17. steve1rm

    web service setup, getting user information on installing [v-urgent]

    Hello, VS 2005 I have created a web service and the web service as a connection string in the config file. Only the user will know the connection string details when they first install the web service. i.e. server, user id, database etc. I have created the setup using the msi webSetup...
  18. steve1rm

    timer remaining active after the form is closed

    Hello, [2005] I have form that uses a timer control. The user can stop, start and reset this timer. The idea of this timer is to log how long a engineer has taken to complete a specific job. The user will stop the timer by clicking a button on the form. However, the problem is that the user...
  19. steve1rm

    Creating a setup for an XML Web Service

    Hello, VS 2005. I have to create a setup for web service. Which I don't think will be much of a problem. However, I have to create a setup that once its installed on the IIS, there is a button that can be pressed that would be on a windows form after the setup has completed. This will inform...
  20. steve1rm

    Transactions and transactionScope

    Hello VS 2005 I have been looking at transactions to rollback if 1 of my insert or updates does not complete successfully. Code example: dim ts as new transactionScope() 'Insert a record into table A 'Insert a record into table B 'update table C ts.Complete() The above does not work too...

Part and Inventory Search

Back
Top