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 Chriss Miller 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: NJLDoc
  • Content: Threads
  • Order by date
  1. NJLDoc

    Collection was modified; enumeration operation may not execute

    All posts state this has to do with for each loops however this error only appears on deployed installs never on my development computer. Error does not trap in JIT remote debugger just crashes the deployed application. Developed on windows 7 in VS 2010 VB and occurs on deployed Windows 7 64bit...
  2. NJLDoc

    Redirect Not working

    If InStr(Request.ServerVariables("http_REFERER"),"sitemap.asp")<>0 then Response.Redirect("http://www.my-domain.com/en/sitemap.aspx") Else Response.Redirect("http://www.my-domain.com/en/index.aspx") End If The statement always returns 0 even when I pass...
  3. NJLDoc

    HELP !!! VB Net 2008 app wont run on Server 2008

    I have an application that uses MS Access databases. The client has just upgraded to Server 2008 and none of the application modules will run directly on the server. At a minimum, I need to be able to compact the databases on the server after hours. I have a program that I wote using VBnet 2008...
  4. NJLDoc

    Help!! Change Element Value

    Is there a way to increment the value of a textbox using javascript function(s)? function whichElement(e) { var targ; if (!e) { var e=window.event; } if (e.target) { targ=e.target; } else if (e.srcElement) { targ=e.srcElement...
  5. NJLDoc

    Help!!! Dynamic HTML Button

    I have a page that requires dynamic buttons. I need buton1 to increment a value in textbox1 and button2 to increment textbox2 and so on. The values of the buttons are derived from a database. If I use ASP buttons, each time a button is clicked the whole page reposts causing an on screen flash...
  6. NJLDoc

    MS Access Connection Limit

    I have written a VB 6 SP6 application that uses Access 97 databases. There are four small databases on the local machine and 1 larger database that is shared often on a network server. One client I have runs XP Home and all databases reside on her local machine. Another client runs XP Pro with...
  7. NJLDoc

    Read/Write from web Database

    I have the following code to connect to an MS Access 2000 database held on an FTP. The connection state = 1 after open yet the recordset cannot be created. Please explain what is wrong? Dim dbWeb As ADODB.Connection Dim rs As New ADODB.Recordset Dim fld As Field With dbWeb .Open...
  8. NJLDoc

    MSHFlexgrid Multibanded

    I have a shaped recordset set to the recordset property of an MSHFlexgrid and can effectivley navigate and format data in any cell. I cannot however colour a cell back colour if the cell is part of the appended (hierarchial) recordset. Cells that are part of the parent recordset are easily...
  9. NJLDoc

    Programmatic Password Retrieval

    In VB 6 I was able to retrieve through code a password from MS Access 97 or 2000. I have a front end application that connects to several databases each with a password. From time to time I change the password. The code I have in VB 6 is as follows: Public Function StPasswordOfStDatabase(ByVal...
  10. NJLDoc

    Read Table Description

    In access you can save text with each table by right clicking the table and entering a description. How do you programmatically read the description from visual basic?
  11. NJLDoc

    ceDeleteFile code needed

    Could any one please provide sample code that utilizes the Rapi.dll to delete a file from the PocketPC device. Until ActiveSync 3.7.1 I could manage the task using RemoteCE.tlb. I have found this to no longer work. RemoteCE.tlb works fine for ActiveSynce 3.7 and below. The reason i need to...
  12. NJLDoc

    PPC 2003 DesktopToDevice Fails

    I have written a database application using eVB for both HPC and PPC 2002 which use the DeviceToDesktop and DesktopToDevice function. When run on PPC 2003 with the legacy runtime files required for eVB applications to run, our desktop software will no longer transfer an overwrite database to the...
  13. NJLDoc

    Power User Cannot read from Registry

    I am using Windows 2000 Pro (and new to Win 2k) and have written an application that makes database connections using database location paths stored in the registry. If I am logged in under PowerUser why can I not retrieve a value from the registry? As administrator I have no problem.
  14. NJLDoc

    HELP -2147352560 (80020010)

    A client, when using my application, receives the following error -2147352560 (80020010) Invalid callee. They are running windows XP yet many other clients also run XP without the same error. When running in debug mode against the clients data I cannot create the error. The application is...
  15. NJLDoc

    ADO Recordset Question

    Is there anyway to create a recordset object based on two separate yet password protected access databases. Not syntactically correct obviously but this is what I want to accomplish. Select FieldA, FieldB From tblOne in database One and then select FieldC, FieldD From tblTwo in database Two...
  16. NJLDoc

    Access 97 Linking tables

    What has to be changed in order to update programatically a linked table. The following code works fine for a non password database but some tables are linked in a password protected database and passing in the password has me stumped. If tdfLink.Connect <> &quot;;DATABASE=&quot; &...
  17. NJLDoc

    Zlib Compression and SetPassword() Help????

    Does anyone know how to set the password while using the Zlib.dll. I have created a zip file containing user defined files and have searched the web for examples on setting the encryption. All I can find is that SetPassword() using the passord as an argument is supported. If there is a declare...
  18. NJLDoc

    Crystal Group Sub Sections

    Is there a programmatic method which allows the user to manipulate the order of a group footer's sub-sections on a report. I have a grid, which lists the sections of the group I wish to present to the end user. Having changed the order within the grid, of that section, I would like to refresh...
  19. NJLDoc

    ADO Primary Key Column Name

    Is there a way to loop through the fields (columns) using ADO/ADOX of a table looking for the primary keys within that table and return the field (column) name. I have been able, using ADOX to loop through the table indexes and identify if the found index is a primary key but cannot obtain the...
  20. NJLDoc

    File Download Open Save Question

    An application that can be updated from a web site by way of a posted .exe file. What I would like to do is disable the option on the users computer which gives the choice to open or save the download file. I want the open only to be coerced by the auto update application I am coding.

Part and Inventory Search

Back
Top