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: *

  • Users: calvi
  • Order by date
  1. calvi

    Retrieve lotus notes email

    Hello,I want to retrieve lotus notes email document properties. With Outlook it is possible. I am wondering if it is possible with lotus notes. Set myFolder = myOlApp.GetNamespace("MAPI").Folders(MailboxName).Folders("Inbox") Set myFolder = myFolder.Folders(FolderName) Set myItems =...
  2. calvi

    Retrieve lotus notes email properties

    Hello, I want to retrieve lotus notes email document properties. With Outlook it is possible. I am wondering if it is possible with lotus notes. Set myFolder = myOlApp.GetNamespace("MAPI").Folders(MailboxName).Folders("Inbox") Set myFolder = myFolder.Folders(FolderName) Set myItems =...
  3. calvi

    file exit code

    Sometimes when you bulid MS Access tool, you also leave the standard menu like File/new, open, close, print, exit, etc. Question: is there a way to catch this command in VBA code? eg. to catch the exit menu.
  4. calvi

    using the integration services project sql server 2008

    I've found it already. You can save the package with File save copy of package as ... Thx.
  5. calvi

    using the integration services project sql server 2008

    with deployment I have got 2 files: the package file and the deployment manifest file. Where in SQL Server do I have to move or copy these files? from the windows explorer? which directory (install directory or the data mdf files directory)? Then double clicking on the manifest file?
  6. calvi

    using the integration services project sql server 2008

    I have made an Integration Services Project with the SQL Server Business Intelligence Development Studio with the task: Transfer SQL Server Objects Task. to copy database to another database on the same server. Now I want to schedule this task with the SQL Server Agent to run it e.g. once a...
  7. calvi

    do bcp script

    there is also a script used in T sql: like this: USE Adventure Works GO Is this correct or do I have to make a quote or something else?
  8. calvi

    copy database

    Sorry but what is BOL? where can I find it?
  9. calvi

    do bcp script

    There is a script is not working I think it has to do with because the name of the database consists of 2 separate words, e.g.: Adventure Works. I was told that I can do it with double quotes between these 2 words. But the script is not working yet. the script is like this: SET...
  10. calvi

    copy database

    May be a simple question, but because I am quite new to sql server 2008: How can I copy a database from the same server to another existing database, overwriting all data. I need to do this for several times. so I tried to make a SQL Server Agent job, but I don't really know how to make the...
  11. calvi

    export data

    Thx.
  12. calvi

    export data

    I export data from SQL server 2000, 2 views to SQL server 2008 database. These views: the one has over 30000 rows and the other over 100000 rows. Both SQL Server I login via the windows authentication. I export 2 views from SQL server 2000 Database\All Task\Export data to the SQL Server 2008. It...
  13. calvi

    Display 3 forms with master child relationship

    I have 3 tables and in between 2 helptables with many-to-many relationship. I want these tables to be shown in one Form with a grand-master, master and child relationship. grand-master in a listbox, then the other two in datasheet forms. I tried and can only connect between 2 tables and the...
  14. calvi

    subform access 2003

    I have 2 tables. the one is parent and the other is child. e.g. 1 customer has many orders. so there is a customers foreign key in orders table. So I want to make a form to show these and add many orders in Customer. So in the Customers form I put all the customers fields and a button to go to...
  15. calvi

    change in Date format in Access 2007?

    I am using MS Access 2007 European(dutch) version. I was told that before 1st of May 2010 when I sql select query in VBA code it is working fine with eg. "Select * from table where date = 25-4-2010"; The database will get this as (25th of april 2010). But after 1st of may 2010 when you put the...
  16. calvi

    insert tables

    Is it possible to insert sql with several tables? insert into 'tablename1', 'tablename2' (coluMn1, column2) values (column1value, column2value) if not do ihave to have several sqlstring, command?
  17. calvi

    retrieve datalist item

    In the button asp:Button ID="btnReserve" I put also CommandArgument='<%# Eval("Name") %>' and within the command event I use the e.CommandArgument. It works just for "Name". But I want also other items like Address and City. How do I solve multiple values?
  18. calvi

    retrieve datalist item

    I can't solve it yet. In my Seek.aspx I have this datalist: <asp:DataList ID="DataList1" runat="server" OnItemCommand="Retrieve_Data"> <ItemTemplate> Name: <asp:Label ForeColor=brown ID="Label1" runat="server" Text='<%# Bind("Name") %>'...
  19. calvi

    retrieve datalist item

    How do I retrieve the datalist values e.g.: Text='<%# Bind("Name") %> with the use of c# on the server and redirect? in stead of javascript?
  20. calvi

    retrieve datalist item

    It's working. But I want now to combine beside retrieving data from datalist to another page, also to retrieve values from the fields on the current page to another page: Reservation.aspx. I want to combine these on the samE button id: MakeReservation. I add herein the...

Part and Inventory Search

Back
Top