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 wOOdy-Soft 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: mheilbut
  • Content: Threads
  • Order by date
  1. mheilbut

    Function not recognized in .NET project + Metada problem.

    Hi everyone! I have created a .cs component and in this component I have a function called GetCard(). I have a aspx page which I am trying to call this function. When I write component., it brings me all the functions in there but not this new one. When I go to the definition of my function it...
  2. mheilbut

    Problems using VSS and Studio for team development

    I created a project in Visual Studio 2005. I then created a database in Visual Source Safe 2005. I created 3 users for my team to access my project as well. All of this was created in a common netword folder so all could have access. When I am using my project, I can check-out and check-in...
  3. mheilbut

    BLOB

    Hi everyone! I am using a table named SW_ATTACHMENT which contains a BLOB in one of the columns. I have to read this attachment and see if it is a .doc format and if so return 1, else 0. Anyone know how I can do this? Can I use dbms.instr? I am using Peoplesoft Vantive and Oracle. Thanx in...
  4. mheilbut

    Help! Oracle Error Exception Treatment.

    When the server I am trying to connect is down I receive the following error: ORA-29260: network error: TNS:no listener ORA-06512: at "SYS.UTL_TCP", line 410 ORA-06512: at "SYS.UTL_TCP", line 252 ORA-06512: at "SAR.INTSAR", line 50 I am using SQL Navigator for Oracle 4.2. How can I use this in...
  5. mheilbut

    How do I pass an array by parameter

    I have an array: array[4][4]; Then, I call a function: FunctionInsert(column,array(?)); This function will get the column number I passed and assign the number 1 to all lines of the column. I need to pass to the function the column number and the array that will be modified. How do I do...
  6. mheilbut

    How do I send apostrophe in file?

    Hi to all!! I am sending a file by ftp and I am having problems because in the file, I should be sending a name as follows: SANTA D'OESTE but unix aparently doesn't have the "'" and instead sends "´": SANTA D´OESTE. How can I send the "'" in my file in unix...
  7. mheilbut

    How do I use temp tables in Oracle8i?

    I was used to using the following query: Select name,sum(sal) as sum from emp where date_emp >= "01/01/2003" group by name into temp aaa Select * from aaa where sum >= 5000 The queries above are just examples. My question is, how do I use this temp table aaa in oracle? It doesn't...
  8. mheilbut

    How do I configure a network in my mac

    I have a macintosh in my company. I run a Novell network between my PC's. There are two macintosh, one of them I was able to read shared directories from other computers but nothing in the novell. The other I couldn't even see shared files from other computers. This second is an older mac and...
  9. mheilbut

    dbcontrol.mdb? how to use with normal tables?

    I have here in my company some information that come from the production of the machines which go through a collector and throws the information in a .mdb database. I have a crystal report with normal sql tables but need to use a field in the .mdb database. I can get the table I need in the...
  10. mheilbut

    Yesterday and tomorrows information???

    I have a report that show me the following: Product Order_number Shift Group 1 - Machine 101 7250125 658665 06/06/2002 18:24:20 7522548 256588 .... Group 1 - Machine 123 8347373 683234 06/06/2002 18:24:20 3837647 398373 .... I want to somehow be able to put...
  11. mheilbut

    HELP URGENT! Client appears only when filter is on!

    I have a report which for client appears his code, name, contact and others. There is one specific client that doesn't appear in my report but should be there. When a filter the report only to show me when this specific client's code appears, then he appears in my report. Also, when I get the...
  12. mheilbut

    How to read as if it was first day of month

    I have a PERL program and one of the tests in it is the following: #today's date $tday = $t[3]; $tday = &quot;0&quot; . $tday if ($tday < 10); #if today is the first day of the month if ($tday eq &quot;01&quot;) { #and if the month is January if ($tmon eq &quot;01&quot;) { # make the...
  13. mheilbut

    If expression with parameter or variable read! Help!

    I have a perl program which is now reading one of two possibilities: 1- The program reads two variables (ARGV[1] and ARGV[2]) which are dates that a insert as parameters ex: ./toped.pl 01/05/2002 to 31/05/2002(date in Brazil is different) 2- The seconde option is it reads a variable defined...
  14. mheilbut

    HELP URGENT! WhilePrintingRecords with error!!

    Hi my formula is as follows: WhilePrintingRecords; NumberVar MyTotal; MyTotal := MyTotal + (({?pro_men_par}/{@tot_op_pares})*{imb_rp_esti.op_qtd}); ({?pro_men_par}/{@tot_op_pares})*{imb_rp_esti.op_qtd}; My total is summing wrong the result, I am resseting the variable in a group above...
  15. mheilbut

    PARAMETER (First day of month and yesterdays date) HELP

    The following is used to get the first day of the month and yesterdays date to put in as parameters: @t = localtime(); $tmon = $t[4] + 1; $tmon = &quot;0&quot; . $tmon if ($tmon < 10); $tyear = $t[5] + 1900; $firstday = join(&quot;-&quot;, &quot;01&quot;, $tmon, $tyear); $time = time(); @y =...
  16. mheilbut

    STILL CAN'T DELETE TEMP FILE IN PERL! HELP!!

    Hi! I create a temp file in perl as follows: $exit = system(&quot;/usr/progs/pedrep.pl $repre $data $datb >/tmp/&quot;.$repre.&quot;pedrep1.html&quot;); Then I send it by e-mail: $exit = system(&quot;metasend -b -t $email -s 'Pedidos' -f /tmp/&quot;.$repre.&quot;pedrep1.html -m text/html -S...
  17. mheilbut

    How can I delete a temp file that I create in PERL?

    This is the command line that creates a temp file: $exit = system(&quot;/usr/progs/fatrep.pl $repre $data $datb >/tmp/&quot;.$repre.&quot;fatrep1.html&quot;); After this I use metasend and I send an e-mail for my client. I would like to after using the metasend delete the temp I created. How...
  18. mheilbut

    PARAMETER (First day of month and yesterdays date)

    I need to put in my date parameter the date of the first day of the month and in another yesterday's date (today minus one). How do I do this in PERL? Michel, São Paulo, Brazil
  19. mheilbut

    How to test a cgi file

    I have a sample of a cgi file that makes a simple hmtl form. What must I do to execute it on my browser? Where do I have to install or move it to? Thanx. Michel, São Paulo, Brazil
  20. mheilbut

    What is the diference bewtween a primary key and an index?

    I am a beginner with sql language. i have been reading a lot about primary key but have never found the need to use it. I use indexes though. Is it the same thing, what is the diference? Which is better to use? Michel, São Paulo, Brazil

Part and Inventory Search

Back
Top