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 strongm 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: sashaDG
  • Content: Threads
  • Order by date
  1. sashaDG

    Combobox in grid with different RowSource for each row

    Good afternoon, I have been a few days in a dead end with the question to which did not come a solution that was given on the forum (https://www.tek-tips.com/threads/two-control-in-a-grid-column.1798594/). Condition Grid.init: sparse = false...
  2. sashaDG

    Execute dll file after copying

    Good afternoon, did not find a solution in the forum, but found other useful information. My question is: after copying, renaming and moving from another disk file vbscript.dll to vb.dll, then successfully entered into the registry using regsvr32. I want use the file vb.dll in VFP...
  3. sashaDG

    Cpzro, different text (codepage) in one file

    Good afternoon, tell me please. There is a file in which, with one cpzero 1251 command, part of the text looks as it should and the other part is not readable. If cpzero 866, then the situation is vice versa. Tried to cast to code page 0 and then to 866(1251) - did not help. What else can be...
  4. sashaDG

    Is it possible to add program code to events if the object has already been created

    Good day. The Form designer has a Grid with a columncount = -1 property. In GRID.init I create a cursor that I display. Is it POSSIBLE at this stage to set the code programmatically in Grid.column1.header1.click()? When I change the columncount and paste the code in Grid.column1.header1.click()...
  5. sashaDG

    argument in Function error 1924 "name" is not an object

    Good afternoon, thank you For the quick answers under the previous posts, there were difficulties. In OptionGroup.InteractiveChange this code works SortedData arNameTextField FOR i = 1 TO ALEN(arNameTextField) cTextControlSource = 'ThisForm.text' + ALLTRIM(STR(i+3)); + '.ControlSource= '...
  6. sashaDG

    Multiple fields in a Grid instead of a whole Grid

    Good afternoon, there was a question about displaying in Grid1 several fields of the SortedData cursor and not all fields of SortedData without creating a new cursor When I write ThisForm.grid1.column3.ControlSource =[SortedData.Sklad] Nothing is displayed in Grid1 In Grid1, only ColumnCount =...
  7. sashaDG

    Modifying the same file by multiple users at the same time

    Good afternoon, there is a problem. The application is located on a network drive, users launch the application and select which file to upload to the Grid using the OptionGroup. After selecting a file, copying took place (if the source was not available successCopied = .F. (for this try catch)...
  8. sashaDG

    Messagebox for a specific time, asynchrony

    Good afternoon everyone. There is a situation when I copy data to excel using SCAN. Question: How can I do, for example, at the beginning of the MESSAGEBOX with the message ("Data transfer has begun") and so that it closes when the SCAN ends. I guess it's called async?
  9. sashaDG

    AfterRowColChange and select Value from Grid

    Hello, I have a question that I can't solve. There is Grid, TextBox.In the TextBox, I can enter values, a search occurs in TextBox.InteractiveChange(everything works here). After searching, a record in the grid is highlighted. Created a function in grid.AfterRowColChange: by clicking on the...
  10. sashaDG

    HeaderHeight and Alignment in Grid

    Good afternoon, there is an empty GRID. I create a connection cursor with GRIDO. Adding to event INIT HeaderHeight and Alignment. When I run app the HeaderHeight changes but Alignment does not This code in Refresh() FUNCTION f(myform) myform.grid1.HeaderHeight = 30 WITH myform.Grid1...
  11. sashaDG

    SQL ANY and ERROR 1814

    Good afternoon. There is a project on the local network, I made an Exe file, in which there is a SQL query with ANY. I don't include any libraries. When I run it on my PC, everything works. When I run on others error SQL: Queries of this type are not supported (Error 1814). I read that the EXE...
  12. sashaDG

    How to fix: after entering the value of the maximum length, the focus is immediately lost

    When the full value is entered in the textbox, the focus moves to another when the full value is entered in the Box, the focus moves to another I understand that the maximum length has been exceeded, but I need the focus to remain on the textBox and I can only move the cursor with a click. Also...
  13. sashaDG

    WAIT NOWAIT

    There is a function A. When I call twice arg = x DO A(arg) arg = y DO A(arg) if error X occurs in A, own error handler intercepts: wait 'wrong '+arg WINDOW NOWAIT TIMEOUT 5 . Shows the last call (wrong y) Same result, shows 'BB': WAIT 'WW' WINDOW NOWAIT TIMEOUT 3 WAIT 'BB' WINDOW NOWAIT...
  14. sashaDG

    Display in txtboxes and tableupdate()

    Hi all. You help me a lot with FOKSPR, my respect to you! Next question: The pageframe.page1 has an ADD button SELECT main_dir =CURSORSETPROP("Buffering", 3) APPEND BLANK ThisForm.Pageframe1.ActivePage = 2 In pageframe1.page2 i have empty(cause append blank) textBoxes whose source is...
  15. sashaDG

    BeforeRowColChange AfterRowColChange. Displaying the deleted record

    Hi all. case1. There is a pageform.p1 main_grid, when i'm double-clicking on the line X, pageform.page2 opens with the "delete" button. When I click delete: I move to the grid, X is not in the grid.(It's good) case2. But when I start the application first, then I add rows from another table...
  16. sashaDG

    During 'Run' the form opens, during 'Build' it does not

    Hello everyone, there is a PageFrame and a button, when clicked, another form opens. During the 'Run' everything works and past exe worked correctly, but when I 'build' the last form opening does not work. There are no errors, I changed the button,the form the situation does not change. I want...
  17. sashaDG

    Sorry for the simple question, but

    I create a Query, pass it to the grid, everything works, only the result of the Query appears in a new window. I have SET TALK OFF. How to hide the popup window?
  18. sashaDG

    Conflict update in cursor

    Hi all! There is a table when you click on the edit button, buffering is =CURSORSETPROP("Buffering", 3) This happens when =CURSORSETPROP("Buffering", 1) is commented out, when uncommented: I get the error [highlight #FCE94F]"There is no ) in the name of the function"[/highlight]. The table has...
  19. sashaDG

    There are text boxes that, under ce

    There are text boxes that, under certain conditions, should not be changed (enabled = .F.), but I do not like the gray color of the values. Is there another way to disable the changes but keep the bright black values?
  20. sashaDG

    SET PROCEDURE

    How to configure the function so that it would not be necessary to specify an absolute path? There is a fileproc.prg with procedures, when I write "SET PROCEDURE TO fileproc" it does not work, but it works when I write through an absolute path I used the CURDIR() function, in theory it should...

Part and Inventory Search

Back
Top