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 SkipVought 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. AlastairP

    C0000005 coming from Unbindevents

    I have been experiencing occasional c5 errors. The VFP9Rerr.log keeps referring to BindWindowsEventsProxy.Destroy line 4, which is "Unbindevents(_vfp.HWnd, WM_THEMECHANGED)" #Define WM_THEMECHANGED 0x031A If Type("This.Parent") # "O" Then Unbindevents(_vfp.HWnd, WM_THEMECHANGED)...
  2. AlastairP

    .NULL. or null

    Thanks Mike. Have a good weekend Alastair
  3. AlastairP

    .NULL. or null

    What is the difference between .NULL. and null when intending to add null to a property For instance should I use store .NULL. to obj.parameter or store null to obj.parameter
  4. AlastairP

    CHAR vs VARCHAR - no real difference size on disk

    Thanks Mike, I won't be using remote views in this case, but very interesting to know, thankyou. Alastair
  5. AlastairP

    CHAR vs VARCHAR - no real difference size on disk

    Good morning all I am looking for ways to optimize a database. I have used CHAR field types for the database. I took a look at the VARCHAR field type. According to the documentation, VARCHAR only uses the size that it needs unlike CHAR that pads the field to the full width. Therefore you...
  6. AlastairP

    data query speed difference with SET DELETED ON/OFF

    I have noticed that there is a speed difference with SET DELETED ON I have been working on trying to speed up data queries. The application is running on Windows Server 2016 I have done a lot of changes to improve speed such as dividing tables and optimising queries, and indexes as required...
  7. AlastairP

    ctl32 Scrollable Container

    Good morning, I am using ctl32 Scrollable container. When the form is resized, the container moves according to the Anchor property (5) However the scrollbar stays in the same location and does not move with the scrollable container Has anyone overcome this issue? Alastair EDIT: It works...
  8. AlastairP

    Windows Server 2016 speed issues

    Good morning Chris, I am not entirely sure of the physical architecture. Though I know we have multiple servers performing different functions. I will look into collate first. That is the first step Alastair
  9. AlastairP

    Windows Server 2016 speed issues

    mJindrova, - what are codepage and collate in config.fpw? - what are codepage and collate in running app? - what is DBF's codepage and Index's collate? I know nothing about the above and how to check or implement in VFP9. Can you provide some guidance on this? Alastair
  10. AlastairP

    Windows Server 2016 speed issues

    NEE4NEE, Does this setting only apply to network shares? If so, not sure how this will effect the database access, as our application is not accessing the database over a network share. Also, welcome to the forum. What is your name by the way? Alastair
  11. AlastairP

    Windows Server 2016 speed issues

    I am working through trying to overcome speed issues with my application running on Windows Server 2016 The server is running 2 x Xenon E5-2650 V4 @ 202, RAM 256GB The server is running raid 10 with SSD drives (we used to have mechanical drives up to recently) The server has 2 partitions, C for...
  12. AlastairP

    debugger not stepping through code step by step

    Thanks Chris Alastair
  13. AlastairP

    debugger not stepping through code step by step

    Thanks I have modified my code so the timer only calls the next event and the validation is done in the next event, not the timer. This enables stepping through the code in the next event as per normal. With thanks Alastair
  14. AlastairP

    debugger not stepping through code step by step

    Ok an update: I am still having the issue. It seems to be occurring in timers, but I am having other issues as well The another issue is with pemstatus anywhere on a form In the console the command works as expected: x = pemstatus(_screen,'oLoadingForm',5) ? x x will show as .t. But the...
  15. AlastairP

    debugger not stepping through code step by step

    I don't know what caused the issue, but is ok now. Alastair
  16. AlastairP

    debugger not stepping through code step by step

    I have just recently started getting an issue where the debugger does not step through the code line by line, but instead only stops where "SET STEP ON" occurs. I set "SET STEP ON" at the point I want to check, then press F8 to step the code. However, the code runs without stopping/stepping at...
  17. AlastairP

    Timer event and spinning mouse cursor

    Good morning, I seem to have some success so far with changing the mouse pointer. I will monitor and see if this is satisfactory. Timer code: this.Enabled = .f. this.Parent.periodic_refresh() this.Enabled = .t. periodic_refresh: IF this.control_in_use = .f. thisform.MousePointer= 13...
  18. AlastairP

    Timer event and spinning mouse cursor

    I have a timer event. The timer checks records. If the mouse is stationary when the timer is running the checks, the mouse pointer changes to a spinning wheel (Windows 10) and does not restore to normal until the mouse is moved. If the check is negative, no update of the ui occurs. The check...
  19. AlastairP

    Web control

    Is there a more up to date web browser control? I am using Shell.explorer.2 An old web form no longer works properly due to age. Any suggestions? Alastair

Part and Inventory Search

Back
Top