Recent content by roh_8_it_3

  1. R

    Crystal report Alignment problem - Export to excel data only

    try this - make the width of the Total field to the comined width of col1+col2.
  2. R

    Application.Version in Access 2007 run time

    Hello All, I have updgraded to access 2007 but all the users of my application are on access 2003.So,I thought I will distribute my application through th access 2007 run time.I have no problem in that.I also have refereces to the excel in the VBA.So,the reference on my pc is the Office 12 but...
  3. R

    Application Name in connection string

    sorry,I didnt clearly explained it.The OLE /DD property is affecting the bound forms,queries and reports.I think the bound forms,queries and reports use the Application connection .I am refering it to the built in access connection here.So it seems like setting this value has affect on all the...
  4. R

    Application Name in connection string

    I think I can change the inbuilt OLE timeout like - Application.SetOption "OLE/DDE Timeout (sec)", 1 This is working and my bound forms,queries and reports are timing out as I set the limit to one second. Actually,this is maintenace project project,for VBA they created the connection in...
  5. R

    Application Name in connection string

    Thanks for your reply.Yes ,less open connectionns on sql server is always good for performance.As I described,in our adp clients we are opening the connection through the Data Link and through VBA as well.So I have thought to change this and the VBA will share the connection that access has...
  6. R

    Application Name in connection string

    sorry i was working on other things and thanks for your reply.I understand it now that since all the properties are not exposed so its not taking the Application Name propertry. I have an adp project project but i dont want the user to enter the data base password because of two reasons -1 .Its...
  7. R

    backend security in access 2007

    here is the another post where i posted what helped me to solve this issue.Thanks for your help. http://www.access-programmers.co.uk/forums/showthread.php?p=754053#post754053
  8. R

    Access 2007 property sheet not visible and status bar gone

    Just for information,Here is the link that helped to solve my issue.I hope it helps others as well. http://www.accessribbon.de/en/index.php
  9. R

    Access 2007 property sheet not visible and status bar gone

    Hi Ron, I have posted another post on this issue with access 2007.Suppose I want to hide the navigation pane,status bar,allow builtin tool bars from the users.For this,I will uncheck the boxes for these properties on the access options -current data base screen. But there is a drop down next to...
  10. R

    backend security in access 2007

    Thanks for your reply.I tried to search posts on this topic but didnt find any usefull info. Could you please point me to right direction?
  11. R

    backend security in access 2007

    Hello All, I have an adp application talking to sql server 2000 hosted on a windows server.We have not allowed the end users to see the database objects.For this , we usually disable the options like -use database window,use access special keys ,allow built in tools/menus from the Tools...
  12. R

    Application Name in connection string

    Hello All, I have an adp project as a front end and sql server 2000 as the backend.I have several ASP.Net apps talking to sql server as well. I have included the Application Name in connection string on the .Net apps and when I execute the sp_who2 stored procedure ,it correctly shows me the...
  13. R

    Binding Continous Form to ADO recordset

    Yes,its make sense to use the connection that access already opened from File-->Connection. But as i was explaining ,I inherited this from someone else and they had made explicit connection via the VBA code.There is global module that open the connection like db.open stconn. On the forms ,there...
  14. R

    Binding Continous Form to ADO recordset

    Ok..may be I dont need a recordset here.But i didnt understand what difference these connection strings are making to the recordset when I am trying it to bind to the form. 1.Public Const strConn = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=user;Pwd=pwd;Initial Catalog=mydb;Data...
  15. R

    Binding Continous Form to ADO recordset

    Thanks for your input. 1.As per you the forms recordset can only be bind to DAO recordset? I checked this kb atricle from MS. http://support.microsoft.com/kb/281998/ MORE INFORMATION To bind a Microsoft Access form to a recordset, you must set the Recordset property of the form to a valid...
Back
Top Bottom