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!

Search results for query: *

  • Users: CFB
  • Content: Threads
  • Order by date
  1. CFB

    Trigger Help

    This is my first time creating a trigger, so please bear with me. I've looked through SQL Server Books Online, Google groups, and these forums, but it's still not clicking. Here's what I'm trying to do. I've got a table which I'd like to create a trigger for. When a row gets inserted, I...
  2. CFB

    Creating COM in VB.NET for VB6

    I'm just learning (and getting used to) the .NET framework. I've done some searching around (including these forums) and from what I understand, the use/creation of COM objects has been done away with/changed the introduction of .NET. I can't seem to nail down the specific answer to my question...
  3. CFB

    Storing and Retrieving FullText

    I'm planning on storing/indexing millions of text documents and allowing them to be keyword searched and retrieved via a web page. I'm trying to figure out the best way to handle this. I know it's a broad question, but does anyone have any suggestions regarding the best way to do this? I'm...
  4. CFB

    Using custom ActiveX controls with ASP.net

    I'm new to the world of ASP. If I were to create a user interface for people using ASP.net and I registered certain ActiveX controls on the webserver I'm using, can I instantiate those controls in the ASP interface? Or, does the user need the ActiveX controls to exist on their local...
  5. CFB

    Dynamic Jscript

    Hi. I'm creating a navigation bar with popup submenus for my website using jscript. I want to create the menus dynamically based on results from a database. I know how to pull the result list back with vbscript and know how to create the popup menus with jscript, but I don't know how to make...
  6. CFB

    Access Database out on the Web

    Does anyone know how to connect, insert, etc. into a database that is out on the web? I've got an Access database out there that I'd like to have my local VFP client access and update. Does anyone know if this possible? Thanks.
  7. CFB

    Menus in forms

    What I'd like to do is put a menu in a form that's not top-level. Unless the form is top-level, I don't think this can be achieved through standard VFP commands. Has anyone out there used some sort of workaround or ActiveX control to get a menu into a form? I've tried using the MS ActiveX...
  8. CFB

    ASP navbar in table - can you refresh a portion of the page?

    Let me see if I can explain what I'm doing. I've got a header.asp for my banner, a navbar.asp for my navigation bar, and a template.asp which I created as a base for all my pages. The template.asp creates a large table on the page with the top row containing <!-- #include...
  9. CFB

    ActiveX Problem on Shutdown

    This is sort of a vague question, but I'm running into some trouble when closing out of VFP after instantiating a certain ActiveX control. When shutting down I receive the application error: 'The instruction at &quot;0x004052e3&quot; referenced memory at &quot;0x0149326c&quot;. The memory...
  10. CFB

    Menu in Form - Not Top Level

    Does anyone know how to create a menu within a form that is not a top level form? The only way I know how to do it is to make it a top level form. I've searched around, but can't find any documentation regarding this. It may be that it's just not possible. Any help would be appreciated. Thanks.
  11. CFB

    Problem with TABLEUPDATE()

    Hi, I've got a form which uses a remote view I created from one Oracle table. I've got controls (in this case an edit box) on my form which are using fields from this remove view as datasources. I'm using the TableUpdate() function to commit the changes from the remove view to my Oracle...
  12. CFB

    Using Acrobat SDK with VFP

    Has anyone used the Acrobat SDK in any of their VFP projects? I've got an application that creates PDF files from pages which the user selects from another file. Right now I'm using the PDF.ocx so the user can view the PDF file from which they are extracting pages. The problem with this is...
  13. CFB

    Differing ADIR() results on WinNT and Win98

    Hi, I've been getting different results using the ADIR() function with WinNT and Win98 operating systems. Here's the code I'm using: cDir = alltr(getdir('c:', 'Select Directory for Process')) nDirs = adir(aDirs, cDir+ '??????', 'D') The nDirs variable should equal the number of...
  14. CFB

    Folder Size

    I'm trying to determine the size of a directory including all subdirectories and files contained within. Does anyone know of another way to obtain a directory's size besides creating a Folder Object with FileSystemObject? Thanks for the help.
  15. CFB

    Problems with WaitForSingleObject and GetExitProcessCode

    I'm using Shell to execute a program and need to wait until the program has finished executing before continuing on with the rest of my code. I've tried using WaitForSingleObject WinAPI function and it caused the program I executed with my Shell command to freeze. Then I created a loop using...
  16. CFB

    Problems with RUN/! command

    For some reason the RUN command isn't running the specified application. Can anyone see any flaws in my code? cDB = &quot;FOR&quot; cTFile = &quot;c:\test\file.t&quot; cXFile = &quot;C:\Program Files\myapp.exe&quot; cProgPath = cXFile + &quot; -q -r &quot; + cTFile + &quot; &quot; + cDB +...
  17. CFB

    Using Shell to execute a program

    I'm executing a program using a Shell command: Shell(&quot;c:\myprogram.exe&quot;) I need to wait until &quot;myprogram.exe&quot; finishes running before proceeding with the rest of my application. Does anyone know how to make your VB app wait for the Shell command to return from executing the...
  18. CFB

    Form is not unloading

    When I call the release() method to close my form, the form does not unload properly. For some reason it is not running the unload() method after it runs the release() method. Anybody have any thoughts as to why my form wouldn't run it's unload() method? Thanks for the help.
  19. CFB

    FormatMessage and GetLastError Win32 API functions

    Has anyone used or have a an example of the GetLastError function passing the error code to the FormatMessage function and producing an error message? The GetLastError function is very straight forward, but I'm having a hard time working with the FormatMessage function due to the way you must...
  20. CFB

    PDF Viewer

    Has anyone used Adobe's Active-X control (pdf.ocx) before? If so, I'm looking for any documentation I could find on it. I'm not sure if it's possible, but what I'm hoping to do is to create a PDF viewer in VFP. Thanks for the help.

Part and Inventory Search

Back
Top