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 bkrike 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 Cornerstone

  1. Cornerstone

    Assigning Resources to a Task

    Meant Project 2010
  2. Cornerstone

    Assigning Resources to a Task

    Having a very difficult time figuring this out. Scenario - PRoject 2012 Create a task that has a DURATION of 20 days and WORK of 40 hours. This means I expect 10 hours of work to be done per week. I assign two resources. One at 25% and one at 75%. When I view the Resource Usage sheet I expect...
  3. Cornerstone

    Time calculations

    I did this and it works just like I need it to. Thanks. TextBox4.Text = DateDiff(DateInterval.Minute, CDate(ComboBox1.Text), CDate(ComboBox2.Text)) / 60
  4. Cornerstone

    Time calculations

    This should be easy but I am new to this. I have two comboboxes on my form. Each is populated with time values that look like this: 6:00 AM 6:30 AM etc I want a person to be able to pick for example 10:00PM in one combobox and 5:00 PM in the other and have a text box show the number 5 which is...
  5. Cornerstone

    Importing (Appending) an Excel file to an existing SharePoint List

    We have WSS 3.0 and have 250 records in a List. We have added 100 records to an Excel file and want to import those records and append to the existing List. How can that be done? Thanks.
  6. Cornerstone

    Outlook 2007 Sending Emails to Imaging

    How may I image emails in Outlook 2007 so that I can also add an attribute (a client ID that the email references). What tools are available? The client has a requirement to preserve certain emails for several years and assign the client id to them for indexing and search. FYI- in Outlook 2003...
  7. Cornerstone

    GP COmapny/Sub-Company Relationship

    Hi, I am a BA who will be helping a company restructure in GP. Currently they have three different companies set up. The new structure will be to create a Holding Co. with the three existing companies becoming sub-companies that roll up into the Holding Co. Some of the fiscal years will change...
  8. Cornerstone

    Need to get BCC email addresses in email format

    Have the following code to scan a Sent folder and return nfo to a table. However, it is returning the name for the cc and bcc instead of the email address of the persons. The To is getting the email address though. Any help? Private Sub ReadInbox() Dim TempRst As DAO.Recordset Dim rst As...
  9. Cornerstone

    Adding a timer on a form

    I have tried using the timer class but do not think it is timing properly. What I wiant to accomplish is this: 1. Have a form with a command button named cmdStartTimer and a textbox named txtTime 2. Click the button and have the textbox display the time counting in seconds. 1, 2, 3, 4, etc...
  10. Cornerstone

    Count Word Pages and Sections

    The following code is giving the user what they want for now. I do not know why they want this but they do. Dim strPageSection As String Selection.HomeKey Unit:=wdStory strPageSection = "Page 1 - Section 1" & vbCrLf Do Until Selection.Information(wdActiveEndPageNumber) =...
  11. Cornerstone

    Count Word Pages and Sections

    Found what I needed. Selection.Information(wdActiveEndPageNumber) & " " & Selection.Information(wdActiveEndSectionNumber) Thanks.
  12. Cornerstone

    Count Word Pages and Sections

    But if I open a document and move from page to page Word knows what page it is on as well as what section it is in doesn't it? I can bbuild the string for the output but cannot seem to find the property for currentpage and currentsection while I have the macro move from page to page. Sorry if I...
  13. Cornerstone

    Count Word Pages and Sections

    I want to loop through a document to find out what pages are in what sections. The output after the macro runs should look like: Pages 1-3, Section 1 Pages 4-10, Section 2 Pages 11-15, Section 3 Thanks for any help you can give.
  14. Cornerstone

    Display map on form in web control based on zip code

    Hi, I would like to be able to view a record on a form with a zip code and in a web control have it display the zipcode area in a map. I am guessing there is a way to do this with some kind of link to google maps, mapquest or other service by including the zip from the control in the link. Any...
  15. Cornerstone

    Find words in Word

    Thanks, I was able to take this and plug it into my procedure that loops through all the docs in a directory, search the files and then type out the filenames and bookmark names in a new file. I really appreciate what you did here. Thank you. Rick

Part and Inventory Search

Back
Top