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!

Recent content by freak11

  1. freak11

    Create New Document

    Tnx... i figured out that yesterday... is workin now... tnx for the help.. i think im finishin it for today, im gonna show it up to my boss... lets see what he says... wish me luck tnx :-D
  2. freak11

    Create New Document

    Here is teh code done it works... BUT... when i use doc.send(.....) it actually send the docs... but those docs r not the same doc i saved, those docs r like a copy of the docs... they r not saved in the databases i specified.. theyr saved in the mail databases... i think... im not really...
  3. freak11

    Renaming the View Tab

    There is way... if i get u right here is the way... well... not for views... but for Forms If you are in a form just click anywhere in the Form and in the Programmers Pane it says Windows Title... there Just set ur title "Title" and thats it... but i think that only works for Forms and Pages
  4. freak11

    Create New Document

    ammm... nvm mind... i had the name of the view wrong... so i think its done... tnx for help... and sorry ill let u know if anything happen
  5. freak11

    Create New Document

    Set entry3 = view2.GetEntryByKey(entry.ColumnValues(0)) theres the problem... but idk what is it
  6. freak11

    Create New Document

    Sub Click(Source As Button) Dim doc As NotesDocument Dim doc2 As NotesDocument Dim docu As NotesDocument Dim oldcoc As NotesDocument Dim session As New NotesSession Dim db As NotesDatabase Dim db2 As NotesDatabase Set db2 = session.GetDatabase("LDCENX05/HMO/CFE"...
  7. freak11

    Create New Document

    How do i create a Variable of a NotesDatabase with a certain database: Could this work? Dim db2 As NotesDatabase("server","db.nsf") plz help... im stock in there
  8. freak11

    Create New Document

    could this be something like this... ... Dim db As NotesDatabase Dim db2 As NotesDatabase("server","db.nsf") ... Do While Not(docu Is Nothing) Set olddoc = docu Set docu = view.getNextDocument(olddoc) Delete olddoc Set doc2 = entry.Document doc2.Form =...
  9. freak11

    Create New Document

    Well... i got this code working... tnx to Pascal :D but now... this code is just a test what i really got to do is this: the code i have is doing everything in the same database... but... how it should be is: the view im using to get doc2 is in Database "x" and the docs im creating (doc) is...
  10. freak11

    Create New Document

    Well... lets see if i got it... olddoc is an Entry? docu is used only for the condition?? is that condition right (docu is Nothing)?? when i do: Set entry = view.GetFirstEntry its because the oldfirst entry is already gone from the view... am i right? i think thats ir for now... hope i got it...
  11. freak11

    Create New Document

    hey... i have another question :-) how do i make the iterations?? i thought could be this way.. lets me know if im right or wrong. or WAY WRONG :-P while(entry != NULL) Set entry = view.GetFirstEntry Set doc2 = entry.Document doc2.Form = "encuesta2" doc2.flag2 =1 'takes it out of...
  12. freak11

    Create New Document

    well i got the date condition. my question is... u said i gotta set a flag in docs for treated docs... i need to add a new field and edit all docs i have already? btw... tnx for answering :D ur helpin so much
  13. freak11

    Create New Document

    Sub Click(Source As Button) Dim doc As NotesDocument Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim entry As NotesViewEntry Set db = session.CurrentDatabase Set view = db.GetView("completa2") Set entry = view.GetEntryByKey("Carlos Nava Aviles") Set doc...
  14. freak11

    Create New Document

    nvm i got it... False duh! sorry and tnx
  15. freak11

    Create New Document

    Here is the code im using... Sub Click(Source As Button) Dim doc As NotesDocument Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim entry As NotesViewEntry Set db = session.CurrentDatabase Set view = db.GetView("completa2") Set entry =...

Part and Inventory Search

Back
Top