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!

Search results for query: *

  1. AndyFreeman

    Rename Folder Using ASP.Net page

    Hi there all i am really hoping you can help me with something i have been struggling with for days now. I am trying to rename a folder using a asp.net page, the idea is the user eners name of folder in a text box, clicks a button and in the onclick sub i rename this folder. The drive i am...
  2. AndyFreeman

    Rename Folder Using ASP.Net page

    Hi there all i am really hoping you can help me with something i have been struggling with for days now. I am trying to rename a folder using a asp.net page, the idea is the user eners name of folder in a text box, clicks a button and in the onclick sub i rename this folder. The drive i am...
  3. AndyFreeman

    Textbox Highlight all text on click

    Hi there In my aspx page i have a textbox that is used for users to enter a search string, on load of the page i have a text value set to Search..... the object in the page is as below: <asp:TextBox ID="tb_search_google" runat="server" Text='Search.....' /> What i am looking for is when the...
  4. AndyFreeman

    Textbox Highlight all text on click

    Hi there In my aspx page i have a textbox that is used for users to enter a search string, on load of the page i have a text value set to Search..... the object in the page is as below: <asp:TextBox ID="tb_search_google" runat="server" Text='Search.....' /> What i am looking for is when the...
  5. AndyFreeman

    SQL 2005 Server, cant back all DB's T-Logs up

    I have stumbled across a little proble. I have been setting up some maintenance wizards to backup all of our DB transaction logs. However it will not show me all of the databases present on the server. It only shows me some of the User DB’s. I have had a look around the only difference I can...
  6. AndyFreeman

    SQl 2005 Saving Maintanance Plans - &quot;no such interface supported&quot;

    Hi there, I am running 2005 Server and am having great difficulties creating Maintenance plans and saving them. Every time i try and save changes i get an error window up saying "no such interface supported" if i create the plan through the wizard it is fine but of course not all plans can be...
  7. AndyFreeman

    Fixing Crosstab Column Widths

    When running a Crosstab report, using Impromptu Version 7.2mrI The column information differs each time a differing prompt is entered and the report run, but the column widths remian the same size which does no always accomdates the data in the field. Has any one any ideas how to fix the column...
  8. AndyFreeman

    Replication of License Info

    Hi I have a Win2K Server that is running Terminal Services and Citrix Metaframe XP. Every 15 Minutes i am getting an event log generated saying Event Type: Warning Event Source: LicenseService Event Category: None Event ID: 213 Date: 15/07/2005 Time: 08:32:53 User: N/A Computer...
  9. AndyFreeman

    Powerplay Save to Excel. Layers Question

    Hello All I have a report i need to have a play around with in excel. The data is currently in a PPR Report. the report has 69 Layers. My question is, Is it possible to save report at excel and save each individual layer to its own sheet within the Excel file. Ie. 69 Sheets Thanks in advance...
  10. AndyFreeman

    Saving to PDF

    I have a Macro that opens a file in a folder, then should save that file to a different folder. It also has a loop in to move onto the next file in the folder and so on. Set objPDF = objRep.PDFFile (strfile, true) This is the the line that is not working. It is not recognising the file name...
  11. AndyFreeman

    Powerplay PDF's and Upfront

    Hi there all I have a report which i need to be able to deliver to non-powerplay client users. We run PPES so i usually use Cognos Upfront to delivery all report to users. However there is one report that i have never been able to get to run successfully on Upfront. It is probably due to its...
  12. AndyFreeman

    Problem with Transformer Building my Cube

    Hello All I am hoping you may be able to help me with a problem i have with one of my cubes. I have a cueb that runs at 1:00 am every morning. It is kicked off by Scheduler using a small BAT file. My problem is as follows. One of the IQD files is only reading 2048 records ( says so in the...
  13. AndyFreeman

    Datagrid formatting with Firefox

    Hi there, I work on my companies Intranet and it has been developed using ASPX with dreamweaver. We use datagrids to display data on them. In IE they all display ok with no problems, i have recently been trialing Firefox out as an alternative browser and have noticed that extra lines appear in...
  14. AndyFreeman

    Upfront Failed to Create PDF

    I have published a new report to upfront from Powerplay Windows Client. The report was connected to my remote Enterprise cube connection. On entering Upfront i can see the published report. On trying to run it though i have only managed to successfully create the PDF once out of over 30...
  15. AndyFreeman

    Row Formatting based on data in Dataset

    Hello All I a currently going through the pains of re-writing my ASP Pages through into ASP.Net. The particular element of one application i have become stuck on is the following. We have a call logging system to record helpdesk problems. As part of the dataset i hold a field that calculates...
  16. AndyFreeman

    Adding a DataColumn to Dataset

    Ok i am calculating a date diff value i have the value but not too sure how to add the value as a column in the dataset time_diff=no_of_hours & "hrs " & mins &"mins" dcoldiff = New DataColumn ( "Time_diff", getType(String) ) dcoldiff.expression = & time_diff & dtsOUPC.tables (...
  17. AndyFreeman

    Macro to Open and Publish to PDF Multiple Impromptu Reports

    Here is my Macro as far as i have got it. It is opening the report but then i get the following error message within cognos script. INTRANET_IMP!Main(42)- R91"Object value is set to nothing" Any help would be great Cheers Sub Main() 'Define variables Dim directory, count '...
  18. AndyFreeman

    Time Diff Between 2 Columns

    Hi there I have 2 date/time fields taht i wish to know the diff between. I am looking for the SQL that will show me the diff between Time_Arrival and Time_Left The times are stored as 1900-01-01 10:39:00 and 1900-01-01 10:39:00 Am guessing i need to to_date them or something but am...
  19. AndyFreeman

    Creating a String by adding 2 date fields together

    I am still a novice with .NEt am trying to take 2 fields and display them as on string. I have got this far, but am then receiving an error message dim full_dt as string full_dt=dtsOUPC.tables("cdt").rows & " " & dtsOUPC.tables("ctm").rows The error is Compiler Error Message: BC30452...
  20. AndyFreeman

    Selecting Top 1 from a multiple table statement

    Within the below statement, how do i select "Top 1" record. If i try place top 1 in after my select it errors asking for the FROM details Thanks 4 any help "select request.REQUEST_ID, place.name, request_event_eta.EVENT_DT c2 , to_char(request_event_eta.EVENT_TM, 'HH24:MI') c3 ...

Part and Inventory Search

Back
Top