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. vgulielmus

    Windows 10 Pro - cannot use the start button

    Thank you for the reply. First I must mention that my colleague told me that the problem suddenly disappear, and I moved on. Maybe it was some unfinished updates (I instructed her to allow Windows to finish the updates, because I suspected that she rushed and closed the PC before the updates...
  2. vgulielmus

    Windows 10 Pro - cannot use the start button

    One of our Windows 10 Pro workstation cannot be shutdown using the "normal path", but only by pressing CTRL+ALT+DELETE When I click the Start Button, nothing happens. By using a restore point, a few weeks ago, I managed to temporarily solve the problem, but now my colleague complains again. I...
  3. vgulielmus

    Shared printer connected via USB

    Sorry for the late reply, but sometimes more urgent things must be deal with. Excellent suggestion you made. The user has changed not the printer's name, but the host computer's name, and now the problem is solved. Thanks again.
  4. vgulielmus

    Shared printer connected via USB

    DrB0b, thank you for the reply, As you can see, the computer is available, but cannot connect the shared printer The host PC is connected to a domain server, and the printer has two drivers installed, but both react into the same way. , The pictures are from a Windows 7 computer, but I got the...
  5. vgulielmus

    Shared printer connected via USB

    A PC using Windows 10 32 has a USB printer attached (Lexmark T420). The printer does not have a net card. The printer is shared, and the network discovery is turned on. From another computer I tried to connect to the shared printer, but I got the 0x000709 error. From the second computer, the...
  6. vgulielmus

    Kyocera FS6525 printer - F245 Error

    Hi, We have four (4) Kyocera FS6525 printers. These are network printers and we use them both as printers and as scanners. One of them already has two PC's added in the address book (for scanning). Now I try to add a new entry, and all goes well, until I try to save it into address book. I...
  7. vgulielmus

    How to get the last transaction record

    In VFP you can do it in threes steps, like this: * first get the record number of each record Sele RECNO() as myId,* from a mytable into cursor mycursor * second get the last record number of each icode SELECT max(myid) as myid,icode from mycursor group by 2 into cursor mycursormax * finally...
  8. vgulielmus

    Need help understanding a piece of code

    The next function can give you some ideas: CLEAR ?[MBT1006],GoodString([MBT1006]) ?[1006MBT],GoodString([1006MBT]) ?[12345],GoodString([12345]) ?[TE],GoodString([TE]) ?[Only alpha but too many (not exactly 2)],[TEA],GoodString([TEA]) ?[Two few alpha], [TE3210],GoodString([TE3210]) ?[Two few...
  9. vgulielmus

    SQL SELECT brain dead

    Mike Lewis, I will try the same prg on another PC. I noticed some strange behavior. Version of VFP is 9.0.7423 The two images: and Respectfully, Vilhelm-Ion Praisach Resita, Romania http://praisachion.blogspot.com/
  10. vgulielmus

    SQL SELECT brain dead

    Obviously, the best advise is to output the result otherwise, e.g. using Copy To, but I am intrigued by the behavior of SELECT ... TO I noticed that SET HEADINGS have a significant impact on the output.When SET HEADINGS is OFF, the width starts with 4, and increase with 4 or 5 / character...
  11. vgulielmus

    SQL SELECT brain dead

    I've made a small test. You can see that for 1 to 5 characters, VFP force the length to 21 characters Then for each additional characters, the length is increased sometimes with 4, other times with 5 characters. Don't know how to reduce the size, nor to control it. I tried several commends, like...
  12. vgulielmus

    Animated cursor generator

    I enhanced (in the same FAQ) the function. Now you can specify the order of images (frames) and the delay (speed) of each frame. In the next example five icons are used to create an animation with 8 frames. The last frame stay longer than the other 7. CLEAR RESOURCES CLEAR ALL LOCAL laIcons[5]...
  13. vgulielmus

    Animated cursor generator

    Just posted a new faq184-7922 Not sophisticated, but useful. Maybe I will enhance later. Enjoy Respectfully, Vilhelm-Ion Praisach Resita, Romania http://praisachion.blogspot.com/
  14. vgulielmus

    Animated cursor generator

    ico2ani is a function that creates ANI files (animated cursors) from ICO or CUR files Has three parameters: - lcAni (in) string, Name of the resulted (ANI) file - laIcons (in) array passed by reference, array containing fully qualified source files (icons or cursors) - lnDelay (in, optional)...
  15. vgulielmus

    FoxPro Excel Automation

    First of all, I apologize, no offense intended. I'm pretty sure you already know that SysWOW64 is for 32 bit applications under 64 bit OS. Almost certain this is not the cause of your problems. You mentioned that oWorkbook = oExcel.Application.Workbooks.Add() oExcel.Visible = .T. runs with no...
  16. vgulielmus

    FoxPro Excel Automation

    Like Tamar Granor, I also suspect the readonly state. Please read Workbooks.Open Method Pay attention to several parameters, like IgnoreReadOnlyRecommended, Notify or CorruptLoad (but may be other that solves your problem). As a final thought, have you tried to open the workbook in Excel, no...
  17. vgulielmus

    Export DBF to MsOffice

    Version 4 for VFP9 and 2/3 for VFP6 (January 2017). Respectfully, Vilhelm-Ion Praisach Resita, Romania http://praisachion.blogspot.com/http://files.engineering.com/getfile.aspx?folder=a1b18b7a-d6ef-4918-9a3a-1f82fecf968e&file=DBF2MSOFfice_201701.rar
  18. vgulielmus

    change the font size with Anchor property

    Please try this. Resizer/magnifier class Respectfully, Vilhelm-Ion Praisach Resita, Romania http://praisachion.blogspot.com/
  19. vgulielmus

    Import text From Writer

    A simple function that extracts the text contained in a Writer odt document, and creates a txt file with the same name. Download links https://www.dropbox.com/s/neavhs36739zqse/importoowrtext.zip?dl=0 Respectfully, Vilhelm-Ion Praisach Resita, Romania...
  20. vgulielmus

    Import tables from OpenOffice / LibreOffice documents (Calc's ods, Impress' odp or Writer's Odt)

    Description A single unfied function to import data from tables contained in OpenOffice / LibreOffice documents (Calc's ods, Impress' odp and Writer's odt) The signature is the same used for ImportFromOoCalc https://www.foxite.com/archives/import-from-calc-ooffice-0000439109.htm The data are...

Part and Inventory Search

Back
Top