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!

Search results for query: *

  • Users: kvang
  • Content: Threads
  • Order by date
  1. kvang

    Multiple dataset in Table (Local Mode ReportViewer)

    I am using ReportViewer in local mode. Can I set more than one data source in the DataSetName property (in a table)?
  2. kvang

    Add datasources to multiple subreports when last SubreportProcessing

    I have a localreport (RDLC) has about 12 subreports. Within each subreports, there could be 2-5 more subreports. It is taking the ReportViewer too long to load the report because for every subreport, the SubreportProcessingEventHandler (SubreportProcessing event) is triggered to get data from...
  3. kvang

    Add datasources to multiple subreports when last SubreportProcessing

    I have a localreport (RDLC) has about 12 subreports. Within each subreports, there could be 2-5 more subreports. It is taking the ReportViewer too long to load the report because for every subreport, the SubreportProcessingEventHandler (SubreportProcessing event) is triggered to get data from...
  4. kvang

    Handle ArgumentOutOfRangeException from DropDownList in Gridview

    How do you handle the ArgumentOutOfRangeException thrown from a DropDownList within a gridview? I have a editable field containing a DropDownList. The list is bind to a data source. Basically, the error is thrown because the item no longer exists in the list. When this exception occurs, I just...
  5. kvang

    Get Task in Data Flow Task Execution Result to Variable

    I have two boolean variables called ExtractSuccess and LoadSuccess defined with package level scope. I want to be able to assign a value to the variables in the Data Flow tab. Is this possible? If so, is it also possible to retrieve the OLE DB Source and OLE DB Destination task execution result...
  6. kvang

    Ant to build latest version (project) on Subversion

    I have three environment: development, test, and production. I am using Subversion and I want to be able to use Ant to build the latest version of my project in source control and deploy to the test environment. Any suggestions or how I can do this would help me get started. Thanks.
  7. kvang

    Snytax to query from Oracle table using dblink

    What is the syntax to query a table from Oracle? I have tried Google, but had no luck. Anyways, here's some information on my database. I'm trying to write the query in MS SQL Server 2000. The Oracle database is 8i. The linked server name is LOANIMG. Database name is RPT. The schema is...
  8. kvang

    table is mutating, trigger/function may not see it

    I have a lookup table that I want to update with the following query: UPDATE VARIABLE_BACKLOG SET LASTCUTOFF = Get_Last_Cutoff_Date(WORKTYPE, SYSDATE), NEXTCUTOFF = Get_Next_Cutoff_Date(WORKTYPE, SYSDATE), CAPTURETIME = SYSDATE Get_Last_Cutoff_Date and Get_Next_Cutoff_Date are custom...
  9. kvang

    Execute Immediate: ORA-01008: not all variables bound

    Anyone know what is wrong with this code? DECLARE v_deptexclude VARCHAR2(30) := 'Direct Retail Lending%'; v_queuetype VARCHAR2(10) := 'new'; v_catgnew VARCHAR2(10) := 'NEW'; v_catgbacklog VARCHAR2(10) := 'BACKLOG'; v_stepname1 VARCHAR2(10) := 'Complete'; v_stepname2 VARCHAR2(10) :=...
  10. kvang

    Procedure Not Compiling Insert with Case

    I am trying to compile this procedure in Oracle 8i: CREATE OR REPLACE PROCEDURE Sp_Update_LSAPP_WORKFLOWSTATUS IS BEGIN DELETE FROM LSAPP_WORKFLOWSTATUS; -- INSERT INTO LSAPP_WORKFLOWSTATUS SELECT DEPARTMENT, DEPTINITIAL, SUM(CASE WHEN CATG = 'BACKLOG' THEN 1 ELSE 0 END) AS WOB_BACKLOG...
  11. kvang

    How to Improve Oracle Data Read Performance

    I'm am using VS.NET 2003 to build a web application that displays data from Oracle 8. In my data access layer project, I have a function that returns a data set: Function getDATA() As DataSet Dim objCommand As New OracleCommand(strSQL, objConnection) Dim objDataAdapter As New...
  12. kvang

    Determine Daylight Saving or Standard Time for Unix Timestamp

    If given a unix timestamp, how do I determine which timezone to use (EST or EDT)? I'm trying to edit this function to automatically return the right time zone with the value passed. CREATE OR REPLACE FUNCTION Unixts_To_Date(unixts IN PLS_INTEGER) RETURN DATE IS /** * Converts a...
  13. kvang

    Gridline color in Datagrid is changed from test to production

    I have a web form with a datagrid. When I installed the web application to my test server, the gridline colors in the datagrid is what I wanted (red). But when I installed the same web application into my production server, the gridline colors changed to something else (silver). Here's a piece...
  14. kvang

    Remember Display Format After Drill Down

    I want to create a report where the user can select the display format (Excel 2000 or HTML) and have the report remember what the user selected after he/she drills down to the second report. The 2 drill-down reports will be created in a procedure file. The user will make their selection and run...
  15. kvang

    Datagrid Attributes

    I have a dynamic datagrid where at ItemDataBound event I need to change align attributes asssigned before runtime. I'm using this code and it doesn't work: e.Item.Cells(4).Attributes.Remove("align") e.Item.Cells(4).Attributes.Add("align", "right")
  16. kvang

    Change GridLines at Run-time

    I know how to set the GridLines at web designer, is it possible for me to change the gridlines at run-time? I want to display the gridlines for certain rows only.
  17. kvang

    How to Change DataGrid Header Text and Still Sortable?

    My VB code is something like this: Select Case e.Item.ItemType Case ListItemType.Header e.Item.Cells(6).Text = "Assessed Dollars MTD" When I do this, it takes away my sort functionality for that column. How can I change the datagrid header text and still make the...
  18. kvang

    Left Outer Join on Multiple Conditions

    How can I do a left outer join on multiple conditions?
  19. kvang

    Merge Datagrid Headings

    I have two columns in a datagrid next to each other that I want to merge the headings only (much like what you would do in excels). How would I do this in my VB.NET code?
  20. kvang

    Find "Return" character and Replace in String

    I have a VB.NET application that reads a text file to write to a database table. The text file may contain a "Return" character which my application does not recognize and causes the application to error out. I read one line from the text file into a string and parse the string using...

Part and Inventory Search

Back
Top