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 bkrike 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: *

  1. Ajb2528

    Including iSeries connection in clickonce deployment

    Hi! I am currently writing an application in VB.Net 2008 and this connects to an iSeries database. I have the IBM System iSeries Access for Windows installed on my development machine. I now need to deploy this application to other machines. I have included a reference to...
  2. Ajb2528

    Creating ClickOnce Install on Windows7

    Thanks for the reply! I have sorted it now.
  3. Ajb2528

    Creating ClickOnce Install on Windows7

    Hi! I developed an application using Visual Basic 2008 that uses SQL Server 2008 Express. When I published it using clickonce under Windows XP there were no problems with the setup (a sqlexpress2008 folder was included within the install location) and all prereqs were included/installed. I...
  4. Ajb2528

    vs2010 - Deployment Project woes...

    Hi jebenson, Thanks for that! Tried it and it does what I wanted! Regards, Alan
  5. Ajb2528

    vs2010 - Deployment Project woes...

    Hi! I am trying to create a deployment project that requires an additional msi file (mySQL net connector) to be installed as part of the deployment. The in-house written dll was written in VB.Net 2010 and this dll requires the mySQL net connector to be installed on each workstation as well. I...
  6. Ajb2528

    Crystal in VS2010

    Hi! Does anyone know how to hide the grouptree in the Crystal Reports viewer in VS2010 (VB.Net). I used to use the following - viewername.DisplayGroupTree = false But I cannot use this in VS2010... Any suggestions? Regards, Alan
  7. Ajb2528

    Making MSWord2007 invisible?

    Hi! I have written some VB.Net (2008) to run a mailmerge... my problem being is that I want to make the instance of Word invisible to the user. The nearest that I van get is to minimise the Word application. The code that I have written is below. Public Sub fred() Dim sqlQry As...
  8. Ajb2528

    FileSystemWatcher...

    Hi! Is there any way of detecting the user that has made any changes using the FileSystemWatcher? Any help will ber appreciated! Regards, Alan
  9. Ajb2528

    Finding rows that do not exist in two tables...

    Hi bborissov, Thanks for the reply! No the query you supplied returns 19145 rows out of 19583.... Regards, Alan
  10. Ajb2528

    Finding rows that do not exist in two tables...

    Hi! I'm tryng to find rows in one table (tblRemainingFiles) that do not match with an entry in another table (tblErrorLog)... So far, I have the following sql written - SELECT c.SourcePath, c.ErrorMessage FROM dbo.tblErrorLog AS c JOIN dbo.tblRemainingFiles AS e ON e.Path <> c.SourcePath...
  11. Ajb2528

    Administrator - Access denied?

    Hi Lemon13! Thanks fr the reply. I took ownershp of the said folders and it worked! Regards, Alan P.S. A star for you!
  12. Ajb2528

    Administrator - Access denied?

    Hi! I have inherited a SBS2003 system and in certain folders/files under a share, the administrator is not allowed to access them! Is there any way that I can authorise the administrator and say, the Domain Admins to to access these folders/files? Any help will be appreciated! Alan
  13. Ajb2528

    Error Handling in vb.net

    Thanks kliot! I'll try it out next week!
  14. Ajb2528

    Error Handling in vb.net

    I dont know wether this has been asked before but... In VB6 you could retrieve the error number and the error description and also the line number where the error occurred. In vb.net I cannot find a way of duplicating this functionality. Has anyone managed to reproduce this or something...
  15. Ajb2528

    VS2008 Setup project...

    Sorwen, Thanks for the reply.... I found an article that sorted out my problem!
  16. Ajb2528

    VS2008 Setup project...

    Hi! Does anyone know of a good step-by-step tutorial of how to create a setup project in VS2008? I am getting stuck on adding desktop and users program menu shortcuts and I am getting nowhere fast! I can get them created but they do not launch the application... Any help will be appeciated...
  17. Ajb2528

    Desktop shortcut...

    Thanks for the reply... but I already knew that... what I am trying to do is make the desktop short cut that I have created in code invoke the click-once updater... Regards, Alan
  18. Ajb2528

    Desktop shortcut...

    Hi! I found some code (can't remember where!) that creates a desktop shortcut in code. The problem with this is that I am using click-once deployment and clicking on the desktop shortcut does not invoke the update of the application when it is required. Does anyone know how to create a...
  19. Ajb2528

    Load/Retrieve Icons from database?

    Hi! Does anyone know of a way to load and retrieve an icon (.ico) file to/from a SQL Server database? I found some code on the web that will load/retrieve bitmaps (.bmp) but this does not seem to work with icon (.ico) files I need to load an icon file say fred.ico into a SQL Server 2005...
  20. Ajb2528

    Changing case of string...

    Hi! I hope that someone can help me.... I have a databse table containing rows of company names. What I would like to do is to parse these names to ensure that they are properly capitalised. For example if the name is - XYZ trading co I would like the function to return - XYZ Trading Co...

Part and Inventory Search

Back
Top