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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by coily

  1. coily

    Deployment of ClickOnce application

    Hi, I have a deployment package that is deploying a ClickOnce application to a virtual directory for download by users. The package uses mage.exe to publish the ClickOnce app once executed. If i run the package on my machine (XP Service Pack 2) it publishes fine and I can install the app by...
  2. coily

    Update application via MSI

    Hi, Recenlty I was asked to write an application that would update a suite of applications installed on client PCs. I came into the project late and was left with building the proposed solution. The solution downloads updates via web service as Cab files then unpacks the files to the correct...
  3. coily

    Connection Speed Check

    Hi, I have a need to check and log the connection speed of a PC running a WinForms app. The client needs to perform a data sync using DTS with the remote server and users have experienced problems. It would be good if I could elimate a poor connection from the possible causes of these...
  4. coily

    Setup Project Registry Values

    Aptitude this was exactly what I was looking for. Thanks
  5. coily

    Setup Project Registry Values

    Hi, I have a setup project for a Win Forms App and I am setting some registry values using the Registry section. My problem is that I need to pass in the Machine Name to one of these values. I know that I can pass the Target Dir but I don't know about the Machine Name. Any help would be...
  6. coily

    Problem with a testsystem site that is just driving me crazy!!!!

    Hi, I have a testsystem site in both German and English, that works fine in live system. Whats worse, is that I have tried copying across the live scripts but it still has an error. The error I get is the Operation not allowed while object is closed. At a line 410 that is:- <% if rsprop.eof...
  7. coily

    ASP.NET Permissions

    Hi, I have a problem with IIS and MS SQL 2000. I need to give ASP.NET and IWAM permission to run a stored procedures on MS SQL 2000. The problem is that IIS and MS SQL are 2 different PC's and IIS is in the DMZ which means that when I try to give permission SQL server can not see the accounts...
  8. coily

    ListBox

    Hi, I have a VB.NET web form with a listbox. The page is set to past back when the selected item changes in the listbox. The problem I have is that when the page reloads the selected item is always on top. This is not what, I want I would like the list to remain in the postion it was posted...
  9. coily

    List problem

    Hi, I have a VB.NET web form with a listbox. The page is set to past back when the selected item changes in the listbox. The problem I have is that when the page reloads the selected item is always on top. This is not what, I want I would like the list to remain in the postion it was posted...
  10. coily

    Data Backup

    Presumably your suggested method would require code to be written for the SQL server? or is it just a case of configuring built in functions? My DBA is the host of my testing server i'm not sure how helpful they are but i'll see what they can do. Many thanks.
  11. coily

    Data Backup

    By Server Side trigger do you mean build the function in to the web form itself? If so, what do you think of using XML for the log as this would give me a structured format with which to work with? Thanks for the reply,
  12. coily

    Data Backup

    Hi, Does anyone have advice on the best/most efficient way to do the following: - Each time a user makes changes to the database i need to log the event. The purpose, being able to roll back/recreate or undo these actions. I could just create a text log and rely on manual recreation but...
  13. coily

    Setting focus

    Thanks for the replys guys, VVlad your example worked treat thanks to you both
  14. coily

    Setting focus

    Hi, I have a textbox that i need to set focus on each page load. I have done this with the following <script language="JavaScript"> function setFocus() { FindPerson.TextBox1.focus(); } </script> I then call this when the page loads, The problem is that it sets focus to the...
  15. coily

    Combo box list

    I am so dumb! Thanks for all your help guys. I found the problem, it was with the sql query [code]stringbuilder.Append(CheckBoxList1.Items(i).text & ")") [code] Its missing the single quotes needed for strings i changed it to [code]stringbuilder.Append("'" & CheckBoxList1.Items(i).text &...

Part and Inventory Search

Back
Top