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 Wanet Telecoms Ltd 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 anuktac

  1. anuktac

    passing parameter to a query

    Thanks Rob This gives me an idea. My problem was really how to pass the parameter from commandline and make excel understand that this value was a parameter and how to evaluate it. I can update the value of the ein from the wrapper java code into a table, and as you suggested, pick up the...
  2. anuktac

    passing parameter to a query

    HI, I am really VB challenged. I am hoping some of you can help me. I am writing a Macro from Excel which simply executes a query with one parameter dynamic: With ActiveSheet.QueryTables.Add(Connection:= _ "ODBC;DRIVER={Microsoft ODBC for...
  3. anuktac

    How to specify a delimiter in a input # function

    Hi, I need to get a list of variables using the imput # function from a file having fields separated by "~". Does anyone know how to do this? Input #1, Sac, Sac_Desc, District, Site, Time_Period, Call_Type, Call_Group, No_Of_Calls, Revenue, Duration, Dummy The above are the list of variables...
  4. anuktac

    help with regexp

    Thanks CadGuyExtraOrdinaire, yes that was the answer I was looking for. One more question since patterns are grouped together in () ,to me it looks like $4 should be the the pattern grouped as (?:eq|in). But this is not so.From the output it is obvious that the group (?(-?\d+:?\d*)\) is $4...
  5. anuktac

    help with regexp

    Thanks Duncan. I know about the $1 $2 $3 $4 concept. I was looking for an explanation of the regexp. How is :? interpreted? Is there any special significance of &, #, % and £? There is a :?, a ?: and -? towards the end. What do they signify? -Anukta
  6. anuktac

    help with regexp

    Hi I have a rather complicated pattern matching code which I am not able to figure out. open (LU, &quot;> lookup.txt&quot;); open (NONLU, &quot;> lookup.rej&quot;); open (WISLU, &quot;wisdom.qsl&quot;); while (<WISLU>) { if (/n01/) { if...
  7. anuktac

    excel 2000 charts on pivot tables

    Hi all, Is there a way to create charts (say, line charts) in Excel 2000 based on Pivot tables, but which won't be pivot Charts? I want simple charts (Like it used to be in excel 97) taking its data source from a Pivot Table. -Anukta [ponytails]
  8. anuktac

    Problem with chart object in Excel 2000

    I just realized that this occurs only when the data soiurce I am using is a Pivot table. When the data source is a normal excel range it does not have a problem. This happens only in 2000. Any ideas? -Anukta [sadeyes]
  9. anuktac

    Problem with chart object in Excel 2000

    Hi all, I have a bit of code for drawing a chart using a macro. This is a part of an Application we have. The code is x=0 y=0 width=750 height=300 Set co = Sheets(Chapter).ChartObjects.Add(x, y, width, height) co.Chart.ChartWizard Source:=Worksheets(Chapter_2_1).Range(&quot;A32:I92&quot;)...
  10. anuktac

    Submitting a form to a different frame

    Thanks everyone. It worked when I set one of the servlets in the ACTION attribute, and the other servlet in the ONSUBMIT attribute.And also setting the TARGET attribute. You are right when you said that it did not work when the form did not have any action associated with it. It needed at least...
  11. anuktac

    Submitting a form to a different frame

    I had no action associated with the form because initially I wanted two servlets to run when I submitted the form. something like this: function submitpage() { var vsac=document.frm_GetSite.sac_code.value; var servletpath1=&quot;/BusinessReview/servlet/br_srv_DisplaySite?sac_code=&quot;+vsac...
  12. anuktac

    Submitting a form to a different frame

    I had no action associated with the form because initially I wanted two servlets to run when I submitted the form. something like this: function submitpage() { var vsac=document.frm_GetSite.sac_code.value; var servletpath1=&quot;/BusinessReview/servlet/br_srv_DisplaySite?sac_code=&quot;+vsac...
  13. anuktac

    Submitting a form to a different frame

    Hi, I have a page, which consists of a top frame, and two side-by-side frames at the bottom: <HTML> <HEAD> </HEAD> <FRAMESET ROWS=&quot;30%,70%&quot; BORDER=0> <FRAME SRC=&quot;/BusinessReview/html/br_top.html&quot; NAME=&quot;DisplaySite_frm&quot; noresize scrolling=&quot;no&quot;>...
  14. anuktac

    Compiler failed to execute error

    I am on Actuate version 6.0 SP1. Whenever I try to compile a report i get an error &quot;Compiler failed to execute&quot;. Any ideas what causes this? -Anukta c.
  15. anuktac

    Complicated SQL Query

    Thanks it was very simple, wasn't it? I had just worked it out too....

Part and Inventory Search

Back
Top