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 SkipVought 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. ferryjenny

    Copying files

    Hi looking for some scripting help to copy files. We have a directory that files are feed into, once in the directory they are processed and then deleted. I am looking for some way to copy these files when they are initially placed in the folder before they are processed. So basically what I...
  2. ferryjenny

    Saving Searches

    In Windows NT I select Find Files or Folders from the start menu I then run my search. I want to Save this search but whenever I select Save Search nothing happens. I have discovered that this is because it automatically saves the search to the desktop however I have no permissions to write...
  3. ferryjenny

    Creating an Enterprise Index

    I have recently installed an instance of Livelink and attached it to an existing database. All is working well except I cant seem to create an Enterprise index. When I go to the Admin pages and browse the system volume no enterprise index is there, so I would expect to see the Enterprise Data...
  4. ferryjenny

    Restoring/Reindexing data

    Thanks this sort of helped but I still have a problem. I can add data to livelink and it DOES index it and everything works fine. The problem I am having is I have a lot of data in an extrenal file store and I dont know how to get it into livelink. Is there any way to reassociate the data in...
  5. ferryjenny

    Restoring/Reindexing data

    Am missing my data and could really use some help. Basically the server that We had livelink on was slowly dying so we had to move it. I copied the External data store to a new server, disconected the livelink instance from the DB (oracle) and turned off the old server. On a new server I...
  6. ferryjenny

    Question about References

    Hi I had a Access 97 database which I then converted to 2000 however when I went to use it on another machine I was getting an error message and it was not running. I found that this was due to a missing library reference the database had the Microsoft visual basic for application extenibility...
  7. ferryjenny

    Do while loops

    One of the queries returns one record and the other returns three I want it to looop through them both until they both reach EOF. If i cahnge the data so they both return the same amount of records then it works but I want them to be able t return different amounts of records
  8. ferryjenny

    Do while loops

    I have two recordsets that I want to loop through at the same time. I have entered the code Do while not DRS.Eof and not BRS.Eof DRS.MoveNext BRS.MoveNext Loop But it dosent seem to be looping. It just returns the first record of both recordsets. Can anyone help
  9. ferryjenny

    Quotes in SQL statments

    I have the answer now thanks I needed to put another pair of single quotes around the first CP
  10. ferryjenny

    Quotes in SQL statments

    Hi I am trying to write an SQL statment that uses a DSum function however it seems to be having trouble interpreting the quotes I am using the SQL is &quot;SELECT Message.Time, Message.Amount, Message.[Free Text] AS Sender, &quot;&_ &quot;DSum('[Amount]','[Message]','[Time]<= #' &...
  11. ferryjenny

    Linking to other ASP pages

    Thank you both so much The pages work fine now and I am very grateful for all your help
  12. ferryjenny

    Linking to other ASP pages

    I am still confused I have a page which we will call page 1 which links to a database and works fine on this page is the following link. <a href=&quot;C:\Inetpub\wwwroot\catex\new Page.asp&quot; title=new page> This link is to a new page which should also connect to a database. Page one works...
  13. ferryjenny

    Linking to other ASP pages

    I am still confused I have a page which we will call page 1 which links to a database and works fine on this page is the following link. <a href=&quot;C:\Inetpub\wwwroot\catex\new Page.asp&quot; title=new page> This link is to a new page which should also connect to a database. Page one works...
  14. ferryjenny

    Linking to other ASP pages

    Hi I am new to ASP and need some help. I have an ASP page which displays information from a database, this page also contains hyperlinks to other pages. These other pages are also ASP pages. When I select the link the page opens but none of the VBScript inside the pages run. Somebody told...
  15. ferryjenny

    Library references

    In my access application if you open a module and look at references there are five selected. However using another computer I do not have one of the OLB files that is selected therefore the application does not work. I found out that the application does not actualy need this reference...
  16. ferryjenny

    Closing Dialog Boxes

    I have a dialog box that has a button on it when the user presses this button a second dialog box appears that also contains a button. When the user selects the button in the second dialog box i want the first dialog box to close does anybody have any idea how this can be done. Many thanks for...
  17. ferryjenny

    writing to files

    This is what I have done however it is not working.
  18. ferryjenny

    writing to files

    I am trying to write the contents of an edit box to a txt file however it is not working. When the dialog is first opened the edit box contains some text and the user then changes this text. I have written the code below to write the text in the edit box to a file. FILE* fp; if((fp =...
  19. ferryjenny

    Reading in files

    The reason is that fgets() is stripping the 0x0D character. Is there any way that I can fix this and display the text file in the edit box with multiple lines.
  20. ferryjenny

    Reading in files

    I am using the following code FILE* stream; if( (stream = fopen(&quot;standletter.txt&quot;, &quot;r&quot;) )== NULL) { interfaceDialog.m_writing_area=&quot;has not worked&quot;; } CString text; char temp[200]; text=&quot;&quot;; strcpy(temp,&quot;&quot;); do{...

Part and Inventory Search

Back
Top