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 MEGUIA

  1. MEGUIA

    Newbie: Transfer table recors from source database to target database

    Hi, I need to create a daily task that collect information from one database to another database. The source database would be used as an backend for an external asp.net application. Our clients would enter the required information then as a transaction task, I need to gather this information...
  2. MEGUIA

    Newbie- Can I develop for a Blackberry, Palm and Pocket-PC?

    Hi, I need to create a simple program for differents mobile devices, like Pocket-PC, Blackberry and Palm Pilot. I can do this with .net namespace? Any help would be appreciate. Thank you
  3. MEGUIA

    Problem with Netbackup 5.1 migration.

    Salutes: We are facing a situation where our Netbackup 5.1 Server with a tape backup device/robot (running in Red hat Linux) crashed, we recreated the server,same name,same ip address.We tried recovering the NBU DB but apparently it was corrupted,it only had fewer entries than what it is...
  4. MEGUIA

    Newbie - Custom Namespace

    Hi Kalisto, Thank you for your help. It works. WOOOHooooo!
  5. MEGUIA

    Newbie - Custom Namespace

    Hi Kalisto, Thank you for your reply. The imports are already on the top. Do I have to make a reference in the designate project, the DLL?
  6. MEGUIA

    Newbie - Custom Namespace

    Hi, I created three class library(Names: businness object, Businness Logic, Data Access), what I'm trying to do is a three layer tier. I know I have to compile as DLL but I want to import as a namespace. How I make a reference to my namespace?. I doing like this and the differents project...
  7. MEGUIA

    HOW TO COLLECT AND SEND EMAIL FROM SMTP QUEUE

    Hi, I want to gather the information from the queue of the smtp email folder, manipulated some information and send the email with smtp service. I download some examples but I need a little jump to start this service. Thank for your supppor.
  8. MEGUIA

    Problems with CreateObject

    Good Morning I got a library created in visual basic and I want to use it in a VFP 8.0 program. I always create andf load the object in VB 6.0 like this: VB. Dim x As Library.libclass Set x = New Library.libclass x.MyMethod (In VB work's) Now I'm instanciating the class in VFP 8.0 like this...
  9. MEGUIA

    Problems Creating DLL in VFP 7.0

    Hi, THe correct way to create the method with parameters it's this: Function CopyFles(SrcPath, DstPath) * Parameters SrcPath, DstPath Private FullCmd FullCmd = "" FullCmd = "xcopy " + SrcPath + " " + DstPath + " /E /C /Q /H /R /Y " loWshShell =...
  10. MEGUIA

    Problems Creating DLL in VFP 7.0

    Hi, Thanks for your answer, but the problem it's this one, I compile the project as a dll so I can call it it VB, it' complie fine but it's leave out the parameters insisde my methods or procedures. You can see it in the object browser after you compile it. Ex Procedure CopyFles *--------...
  11. MEGUIA

    Problems Creating DLL in VFP 7.0

    Hi, I've created a a custom dll in VFP 6.0 with procedures and everything, then I upgrade the program to VFP 7.0 but I find a bug and that is it's create the procedure as a method but it doesn't create the parametters. Here is the code just compile a single Dll. Any advice would be great...
  12. MEGUIA

    How to verify folders on another computer in the LAN?

    You are right, I was having problems with security priviliges. Thank You
  13. MEGUIA

    How to verify folders on another computer in the LAN?

    Good mourning I'm using the DIRECTORY() functions to verify that a folder exits on another computer. Example: ?DIRECTORY("\\ftrctr1\C$\ftr recordings") It's return .f., but the computer it's on, and the folder exits. I'm doing this correctly? Any advice would be great. Thank You
  14. MEGUIA

    How to call a function? Beginner

    Hello, I've created an ActiveX dll in VB and all I want to call the dll page with the value passed from the event button onclick(). I have this code but It give a headeache because I read all the thread from this forum and I don't see the error. Any advice would be great. Thank You. Code...
  15. MEGUIA

    Beginner Problems calling a custom procedure

    Hi I've created a Vb Dll and I'm creating the object from an asp, everything work's fine when I'm using one asp to collected the data and send it to the other asp but when I'm trying to call the procedure in the same asp it's doesn't worked. This is my code <html> <head> <meta...

Part and Inventory Search

Back
Top