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 Mike Lewis 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: *

  1. mariabenita

    Very slow in accessing over the network

    I have a system developed at VFP6. My problem is that when I install it over the network, it becomes very slow. I have a Pentium III Server and Celeron 300 Workstation connected at 100Mbs. My system and data are installed at the server side. I don't think that I have a problem with my hardware...
  2. mariabenita

    Problem on using print to file in VFP containing an image!!!!

    Good day! I'am using Visual Foxpro 6 and I'am having a report containing images on it. I wasn't able to use the print to file command that would look like the same with my report. I have noticed that the images were not saved. Is it because the VFP 6 report can only save a text file only? Is...
  3. mariabenita

    How to send an image or picture into Excel Sheet using VFP

    Good Day! Is there any way to to send image or picture into Excel Sheet using VFP. This is the sample of my codes. tmpsheet = GetObject('','excel.sheet') XLApp = tmpsheet.application XLApp.Visible = .t. XLApp.WorkBooks.Add() XLSheet = XLApp.ActiveSheet XLSheet.Cells(2,1).Value = "Item...
  4. mariabenita

    Opening, Updating data using vfp, sql server

    I'am using visual foxpro 6, and MS SQL 7.0 as my back end. I already established connection to SQL Server and created remote views. When I used to update data, only the remote views was updated but no changes made to the base table on SQL Server. How can I update the base table on SQL Server...
  5. mariabenita

    previewing report on crystal 8

    how is previewing reports done dynamically using ado recordsets in vb6? we have already gone through the process of preparing the data for the report, the only problem is we can't find the method equivalent to .preview in crystal 7. here's part of the code. lsSql = "SelProcCustomer...
  6. mariabenita

    Using report form to save report layout with an image object in a file

    Good Day, I have report with an image object and I want to send output directly into HTML file using REPORT FORM command. I don't know if it possible, but is there any other way to send output into html file
  7. mariabenita

    How to format text box dynamically

    Yes, I want only numbers should be accepted on the text box
  8. mariabenita

    How to format text box dynamically

    I am novice VB programmer. Is there any posible way to format text box dynamically. For example, I have text box named txtUniPrice. I want to control that only digit characters should be accepted on the text box. I'll tried to use DataFormat properties in '#,###,##0.00' format but it doesn't...
  9. mariabenita

    Invalid character value for cast specification

    I'am using vb6 as front end and mssql7.0 as back end. I've encountered this error "Invalid character value for cast specification" when saving. I've noticed that the said message appeared when using numeric field. Did you encounter this problem?
  10. mariabenita

    saving/retrieving images in vb using access database

    already tried using appendchunk/getchunk I don't know if my coding was correct. see code used below... Function CopyLargeField(Source As Long, _ fldDestination As Field) ' Set size of chunk in bytes. Const conChunkSize = 10000 Dim lngOffset As Long Dim lngTotalSize As Long...
  11. mariabenita

    Pls help, Saving report to html file with pictures/image

    I am doing an inventory system with pictures or image save on my table. How can I save my report on a HTML file format using REPORT FORM command. I'll trying to save my report with the following command: REPORT FORM invrep TO FILE inv.HTM But when I view INV.HTM file, only ascii characters...
  12. mariabenita

    ACCESSING AND SAVING IMAGE/OLE OBJECT TO FIELD

    I'm doing an invetory system, Is it possible to save the picture of product to a field? I'm trying to save the filename of the object in a a text field type and then I already accessed it using LoadPicture command in VB. But the problem is I want to print the picture on the report, and there is...

Part and Inventory Search

Back
Top