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!

Search results for query: *

  • Users: balor
  • Content: Threads
  • Order by date
  1. balor

    Protect PDF from .NET application

    Does anyone have a solution for password protecting or write protecting a PDF file with .net code or a free third party tool writen i managed .net code?
  2. balor

    Write protect PDF file rendered from Reporting Services

    Hi! Reporting Services do not support write protecting or password protecting rendered PDF files. How can I do it after the render? We render the document in our desktop application so we have full control over it. We have also developed a merge method to merge several pdf documents to a...
  3. balor

    Abort SQL script?

    Hi, how do I abort an SQL-script when it contains the GO command? I want to be able to send the customer a script that creates tables, views and storred procedures etc. and be able to abort the script. At the start of the script I check some stuff and if it's not right I dont want to run the...
  4. balor

    I try to use sql dmo (sqldmo.dll) o

    I try to use sql dmo (sqldmo.dll) on a computer. It works fine when an administrator use my application but it does not work for any other user. First I got error number 70 when I tried to create an instance of sqldmo. When I changed the access rights for the file sqldmo.dll the errormessage...
  5. balor

    Scope of XACT_ABORT?

    Hi, What scope does XACT_ABORT affect when I set it in a stored procedure? The entire server? The connection? SET XACT_ABORT ON SET XACT_ABORT OFF
  6. balor

    How to check if Access 2000 or Access XP

    Hi, Can I with vba-code check what version of Access the user is using?
  7. balor

    Remove MsgBox "...opened read-only..." at startup?

    Hi, if you write protect an .adp or .ade file you get a warning message when you open it: "The database xxx will be opened read-only...". Can I remove that warning message? Is't wery confusing! The user realy think that the DATABASE is read only when it's only the klient that is...
  8. balor

    Set ownership with script?

    Hi, I want to set ownership (to "Administrators") with code. I know you can use cacls.exe to set permissions but how do you change ownership? //Martin
  9. balor

    Alternative for ImgEdit?

    Hi, Does anybody know anything about components for editing images? I am looking for an alternative for the ImgEdit component that’s included in Windows. Just mention a name or point me in the right direction.
  10. balor

    .adp takes long time to load

    Hi, I have a rather large Access project connected to an SQL-Server. The larger the project gets (more code) the longer time it takes for it to start up. Even if I shift-start it. No code is running, and no data is fetched from the database. It's just the time to load the file. Do anybody have...
  11. balor

    .adp takes long time to load

    Hi, I have a rather large Access project connected to an SQL-Server. The larger the project gets (more code) the longer time it takes for it to start up. Even if I shift-start it. No code is running, and no data is fetched from the database. It's just the time to load the file. Do anybody have...
  12. balor

    Variable in Cursor declaration

    How do I use a variable in the FOR expression for a cursor. I want to do something like this: SET @sSQL = 'SELECT * FROM ' + @sLinkedDBName + '...Table1' DECLARE TheCursor CURSOR FOR @sSQL OPEN TheCursor . . . How do I use the "@sLinkedDBName" - variable in the FOR...
  13. balor

    SP in IN

    Hi, I want to use the values from a sp in a WHERE-Clause. Do any one have a example of how I can do that in the simplest way. This is what I want to do: SELECT * FROM Table1 WHERE Table1.ID IN (SELECT ID FROM sp_GetID)
  14. balor

    Listbox Forms 2.0 shows the backgound

    Some times I want to use listboxes from "Forms 2.0" instead of the usual Access listboxes. The problem is that sometimes the background shines thru where the horizontal scrollbar use to be. Do somebody know why, and how to fix this problem?
  15. balor

    Problem to execute Stored Procedure in SQL-Server from Access

    If I try to execute a stored procedure including an insert into a temptable the sp don’t return any values. The problem only occurs when I am executing the sp from a Access project. The sp works fine in Query Analyzer. It works on one of the servers I’m working against but I don’t know why and...
  16. balor

    Problem to execute Stored Procedure in SQL-Server from Access (.adp)

    If I try to execute a stored procedure including an insert into a temptable the sp don’t return any values. The problem only occurs when I am executing the sp from a Access project. The sp works fine in Query Analyzer. It works on one of the servers I’m working against but I don’t know why and...
  17. balor

    Execute sp from Access adp don´t return any values?

    If I try to execute a stored procedure including an insert into a temptable the sp don’t return any values. The problem only occurs when I am executing the sp from a Access project. The sp works fine in Query Analyzer. It works on one of the servers I’m working against but I don’t know why and...
  18. balor

    "Default open mode" with Access project (*.adp)

    If you create an Access project and use it with MSSQL-server you can’t specify "Default open mode"(Advanced tab on options). You can’t specify it by code either. It is always "Exclusive". I want the users to use the same .adp or .ade file on the server so I don’t need to copy...
  19. balor

    "Default open mode" with Access project (*.adp)

    If you create an Access project and use it with MSSQL-server you can’t specify "Default open mode"(Advanced tab on options). You can’t specify it by code either. It is always "Exclusive". I want the users to use the same .adp or .ade file on the server so I don’t need to copy...

Part and Inventory Search

Back
Top