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 Cagliostro

  1. Cagliostro

    Traffic Redirection

    Hi, did you solve the problem? I have a similar problem Ion Filipski
  2. Cagliostro

    Passing values to subreport

    hmm, I will try Ion Filipski
  3. Cagliostro

    Passing values to subreport

    lbass, are you there? Ion Filipski
  4. Cagliostro

    Passing values to subreport

    I've seen already a thread about passing values, but this does not seem to be right one for my sityation. I have a main report what have fields A,B,C... and I have a subreport what have a stored procedure as a source, for example MyProc. I want the subreport to use field A as a parameter for...
  5. Cagliostro

    CR9: Passing a value to a subreport.

    Hi, I have quite the same problem. I have a main report what have fields A,B,C... and I have a subreport what have a stored procedure as a source, for example MyProc. I want the subreport to use field A as a parameter for MyProc. In the database I call the procedure like this: exec MyProc...
  6. Cagliostro

    Tk::Text

    Hi, how can I simply get all the text from the text box? this is a sample: #!/usr/local/bin/perl -w use Tk; $mw = MainWindow->new; $text = $mw->Text(-width => 40, -height => 10); $text->pack; MainLoop; Someone suggested me to do like this: print $text->cget('-text'); but I get an error...
  7. Cagliostro

    How to debug ActiveX in IE

    loat the project in the IDE, start the IE with your ActiveX and attach the IDE debuger to the IE. You you can specify a path to IE when debuging, and start debuging will start your ActiveX in IE. At least this is possible in Visual Studio any version. Ion Filipski
  8. Cagliostro

    callback in RMI

    Hi, I'm learning RMI now. Could you please tell me, how can I create a callback interface or function? I mean a function what is implemented at client side and can be called from the server. I tried to do this, and get marshalling errors. If I do this in CORBA this works fine with no errors...
  9. Cagliostro

    version

    Hi, how to get the version of the Linux what I'm working on? Ion Filipski
  10. Cagliostro

    globals and current scope

    The only IDE available there is vi editor. And I want to output all the variables in the browser, so I could view them. At least at once. Ion Filipski
  11. Cagliostro

    globals and current scope

    I can't use or not to use strict. This is a big application what already is done by something else. I have only to fix bugs and to do small changes in the program. There are many including directives, with many variables. Ion Filipski
  12. Cagliostro

    globals and current scope

    Other question. I want to know what are the global variables and variables available in current scope. Is there a way to do that? (I mean not listing the source code, but just printing them on the output) Ion Filipski
  13. Cagliostro

    importing vb ActiveX,, CreateInstance returns "Class not registered"

    in HKCR\CLSID are written GUID's, not prog id's. But when you are creating the instance like this: pDBP.CreateInstance("DBProcess.ClassProcess"); you are using the ProgID's, not GUID. This "DBProcess.ClassProcess" is a ProgID. And it is written in just in HKCR , not in HKCR\CLSID Ion Filipski
  14. Cagliostro

    $obj->SUPER::....

    fishiface, the great thing is what I don't make the design, and I'm not making any aplications. There is a hierarcy of classes what I don't know, but the application is big, and have several bugs what I have to fix. Ion Filipski
  15. Cagliostro

    importing vb ActiveX,, CreateInstance returns "Class not registered"

    have you taken a look in registry to see if HKEY_CLASSES_ROOT\DBProcess.ClassProcess key exists? Maybe there is some DBProcess.ClassProcess.1 (or mayme it does not exist at all)? Ion Filipski

Part and Inventory Search

Back
Top