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 strongm 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: ApocY85
  • Content: Threads
  • Order by date
  1. ApocY85

    Custom Template Control Allowing Similar Children

    I was hoping to create a custom control whose template would only allow elements of a certain type. Below is an example of desired markup: <cc1:EntityView runat="server"> <LabelledControls> <cc1:LabelledTextBox runat="server" /> <cc1:LabelledTextBox runat="server" />...
  2. ApocY85

    Session ends when accessing an object stored in a session variable

    Hello everyone! I have an issue I am hoping someone can help with. I have an application with quite a lot of code but managed to reduce all the code/references/etc down to just a few lines. The issue that I am having is when I am accessing an object that was stored in a session variable, the...
  3. ApocY85

    Render Bitmap From Within Custom Control

    I am somewhat new to ASP.NET and newer at creating custom controls. I created a new "dummy control" for testing/learning purposes and have been trying to figure out how to write/render a Bitmap object to a web page from within the custom control. I have tried using...
  4. ApocY85

    Persist Custom Control Property Between Postbacks After Modified In Callback

    I am somewhat new to ASP.NET and very new to custom controls, so I apologize in advance if my question is ridiculous or hard to understand. I have a custom control that: Inherits WebControl Overrides the Enabled property Implements System.Web.UI.ICallbackEventHandler All elements of the...
  5. ApocY85

    Get Another Program's Text (Through SendMessage Or OCR)

    Hello! I am new to API calls that take use of a device context. I just read up a little on what a device context is, and have been working on a certain "test" procedure that ultimately will be used at work. The procedure that I am trying to get to work will actually be used for two...
  6. ApocY85

    Data For a Subreport Within a Subreport Is Duplicated 8x On Export

    Hello everyone! I am experiencing a peculiar issue with an Access report. This is the first time I've ever made an Access report, however I have made numerous, fairly complex reports in Crystal and SSRS (BIDS). I am reporting off of a fairly large-scale database, as it contains numerous...
  7. ApocY85

    Parameter Values Automatically Get Unchecked

    I have an SSRS report that has quite a few parameters, of which some are dependant on others. For on particular parameter, there is the ability to choose multiple items. When this parameter is enabled, only certain values are checked (default). However, I would like them all to be selected...
  8. ApocY85

    Automate Excel/Powerpoint On Server Without MS Office

    My team has an Access DB file that was used for automating an Excel to Powerpoint process via VBA. I recently made a VBScript version hoping that we no longer would need to open the Access file and click a button to start the process. I also had hopes to schedule the script to run on a server...
  9. ApocY85

    Reading Character-Delimited Files That Contain New-Line Characters

    I am writing a SAS program that must read in an Excel file. My team has Perl code that converts the Excel file to a CSV file that our SAS programs are able to read. Now, I've done this in the past with no problems. However, this time around the program must read in an Excel file with cell...
  10. ApocY85

    SAS Escape Sequence

    I think this question should be easy to answer :) In every language I know, if you need to include certain characters (for example, a quotation mark) in a string, you must use an escape sequence before that character so the parser doesn't confuse it with some keyword/symbol. Here is an...
  11. ApocY85

    Mail On a Condition

    I am just starting out with SAS, and have a project to work on. I really do not know SAS very well at all, so please bear with me :) I would like to send an e-mail only if there are no observations in a data set (cust2). If someone could tell me why an e-mail is always being sent regardless...
  12. ApocY85

    Query runs fast in SQL Developer but slow in SSRS

    Just as the subject of this thread suggests, I have a query that executes quickly in Oracle SQL Developer (OSD), but runs forever in SSRS. The query usually takes between 0.5 - 2.5 seconds to run in OSD. However, I have let the query run in SSRS for probably around 20 minutes until eventually...
  13. ApocY85

    Top In Consecutive Days Query

    I have a rather large query I've been building for a report. It appears all is working well, except for one section. It shouldn't be this hard, but for some reason I'm not getting that section to work. Perhaps I've simply been working on the report for too long, but hopefully someone out...
  14. ApocY85

    SSIS Package from Excel - Incompatible Data Types

    I have a SSIS package that simply retrieves the data from an Excel data source and copies it to a SQL Server table. Everything is set up and ready to run, except for two fields. I've spent too much time trying to figure out why these two fields will not work. I get the following error on the...
  15. ApocY85

    SSIS package runs successfully on PC, but not Tivoli

    I have a rather simple SSIS package I created that runs 100% successfully on my computer. However, when I use the Tivoli Job Scheduling Console, the job errors out. I click "Browse Job Log" and see the following errors: Description: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has...
  16. ApocY85

    Base Chart Off of Two Date Fields

    I have a report that must give a count of both the number of surveys sent to a customer, and the number of surveys completed by that customer, per month. Each time a new survey is sent, a field Srvy_Dte is filled for that record. The same goes for cmpl_dte for when the survey is completed...
  17. ApocY85

    VB Powerpoint Automation - Charts Do Not Retain Data When Edited

    With the function of code displayed below, I am editing powerpoint charts to update them with the most current data from an excel document. Everything works perfect except for when a person starts to edit a chart, all the data values in the chart worksheet appear to be restored to their...
  18. ApocY85

    &quot;String required here&quot; error only through CMC

    This is my first post so please be patient :) I have a formula with the following text: if isnull({SurveyResponses_.Question 3e}) then 0 else if {SurveyResponses_.Question 3e} = 0 then 1 else 0 Originally, the first if statement was not there (the part that checks for null)...

Part and Inventory Search

Back
Top