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!

Recent content by Matsul

  1. Matsul

    XLs pivot running toltal

    Is there a way of disabling the running totals in an excel pivot table ? Pivot ----- Sum of Count Total MM a 30 MM Total 30 --> Not Required PP a 10 d 10 PP Total 20 --> Not Required RM a 50 d 30 RM Total 80 --> Not Required Grand Total 130 Data (to create above pivot)...
  2. Matsul

    Blank rows when exporting to excel

    I am exporting a grid view to excel using the the code as below; using System; using System.Data; using System.Configuration; using System.IO; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using...
  3. Matsul

    euro symbol €

    I am doing private DataTable CreateDataTable() { DataTable myDataTable = new DataTable(); DataColumn myDataColumn; myDataColumn = new DataColumn(); myDataColumn.DataType = Type.GetType("System.String"); myDataColumn.ColumnName =...
  4. Matsul

    euro symbol €

    How can I set a string as follows string mm="amt (€)"; ? When I display I am getting amt (€) thanks for any help.
  5. Matsul

    Constant date SQL Loader

    That would be the sysdate, while I need a constant which is a date. thx, Matt
  6. Matsul

    Constant date SQL Loader

    Hi Mufasa, the thing is I have to load data from files having a date in the file name (MM_20090309_EXEC_2.csv) and need to have the date in the name as one of the entries. So I used sed in Unix to change the controlfile to the date and need to load hope to load it as a constant. I have a...
  7. Matsul

    Constant date SQL Loader

    I need to load a date as a constant into a table. I tried; LOAD DATA APPEND INTO TABLE "HLR_OWNER"."FOR" FIELDS TERMINATED BY ',' (MS, IM, Filedate "to_date('20090309','YYYYMMDD')" ) but I get; Record 1: Rejected - Error on table "FOR", column FILEDATE. Column not found before end of logical...
  8. Matsul

    Pass file mask

    I need to pass a parameter having an * representing a list of files >touch mm1 >touch mm2 emacs tt.ksh FF=mm* echo call $FF >chmod u+x tt.ksh > ./tt.ksh call mm1 mm2 How can I display call mm* ? thx
  9. Matsul

    List Quey

    I have a method public List<string> getMList() { List<string> listM=null; listContracts.ForEach(delegate(Cobj contract) { listM.Add(contract.M); }); return (listM); }...
  10. Matsul

    Change txt box

    Using Visual Studio 2005, c# I have in Source view; <td style="width: 193px; height: 31px;"> Name </td> <td style="width: 327px; height: 31px"> <asp:TextBox runat="server" ID="txtName" AutoPostBack="true"...
  11. Matsul

    Euro

    I tried HttpContext.Current.Response.Charset = "UTF-16"; (as below) and some others but still no luck. thanks. public class GridViewExportUtil { /// <summary> /// /// </summary> /// <param name="fileName"></param> /// <param...
  12. Matsul

    Euro

    Exporting to excel (VS 2005 .Net c#), I am having problems with the €. 10660 56660 € 158,58 € 158,58 is becoming 10660 56660 € 158,58 € 158,58 It is the footer of a grid, extracted using if (gv.FooterRow != null) {...
  13. Matsul

    Array

    Hi Mufasa, all, I want to have two SQL programs; 1. Loads array into memory and passes the array to program 2. 2. Performs processing on the array So that in SQL I run say; SQL> @load_array SQL> @process_array So how can I define the array such that process_array can see what was loaded...
  14. Matsul

    Array

    I have a script that loads a huge array. Kind of Declare PROCEDURE pLoadArray (vaCustcode_num IN OUT vacustcodednno) IS iarraysize INTEGER := 3000; i INTEGER; vErrorMessage VARCHAR2 (256) := ''; BEGIN FOR i IN 1 .. iarraysize LOOP...
  15. Matsul

    Xls Series Shaded

    I need to use in xls v2003 the option; Edit --> Fill --> Series for some reason Series is shaded and cannto be selected. Down , Right , Up, Left and Justify are not shaded. If I start a blank worksheet it works so I am having to make series on a blank worksheet and paste them in. Any help...

Part and Inventory Search

Back
Top