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

    Different ReadOnly in Grids?

    This code (InitEvent of the Grid) ends with a ReadOnly Column: THIS.Column1.Header1.CAPTION = "" THIS.Column1.WIDTH = 40 THIS.Column1.CONTROLSOURCE = "TableXYZ.abc" THIS.column1.ReadOnly = TRUE This code doesn't end with a ReadOnly Column: THIS.Column1.Header1.CAPTION = ""...
  2. mkendi

    Grid does not keep INPUTMASK

    Into the 2th column I add a new object, wich allows me to enter numbers like a calculator (class txtnumber). Everthing works perfect. But there is a fly in the soupe: Before I enter this column, the number is displayed 'flat' like "12345.67", but as soon I enter this column, the display of the...
  3. mkendi

    Build Win32 executable

    In all my program files (*.prg) I include in the first line a header file e.g. #include "mkb.h" In this header file I DEFINE program-version, database-version etc. etc. This definitions are important for the course of the program. If e.g. the field db_version in the table default.dbf is older...
  4. mkendi

    DatabaseBackup With MoleZip

    In this forum until today I was always a "taker". Now I think its time to change my behavior. :) 1. Download MoleZip.dll form http://www.molestudio.com/tools/molezip/ 2. Register it with RegSvr32 3. Now you can call BackupDatabase( cDatabase, lSilent ) 4. BackupDatase is using another function...
  5. mkendi

    How to interfer with Beautify

    I there a way to tell Beautify, not to interfere with a special word? My problem is: My beautify-settings changes all keywords to uppercase. Now ShowWindow is a Vfp Keyword. But also a (case sensitiv) function in Win32Api. Best regards
  6. mkendi

    Dif. between Kernel32 and Win32API

    Difference between Kernel32 and Win32API I was trying to implement faq184-1767 (How to stop users running my app twice); but I get the error message "cannot find entry point SHOWWINDOW in DLL" when I reach the declaration. Then I changed the decralation from DECLARE LONG SHOWWINDOW IN Win32API...
  7. mkendi

    Delay in msec

    After reading the thread about serial communication I thing the code below can help in some situation: DECLARE INTEGER Sleep IN Win32API INTEGER Sleep(10) && in msec Best regards M. Kendi
  8. mkendi

    HelpContextID

    In my application I use context-sensitive help. I put the command "THISFORM.HELPCONTEXTID = xxx" into the init-method. Everything works perfect. But as soon as I add an activeX object into my form, the keypress F1 does nothing. The KeyPreView property of the form is set to TRUE...
  9. mkendi

    Transfer from W2k -> Linux

    Is it possible to copy only the whole Data-Folder? Or do I have first to create the database and then import the tables? Thanks in advance MK
  10. mkendi

    Picture overlapped by grid

    In my application I try to implement picture based "ToolTipText". If the user moves over a specific column of the grid, a picture should appear. But the picture is always overlapped by the grid. I tried to work with ZOrder, but it doesn't helped. Thanks in advance MK
  11. mkendi

    Database does not close

    In my program there is a section, where the user can delete all index-tags, re-create the indexes and pack the database. But with the command "PACK DATABASE" I get the error message, that the database is not opened exclusivly. With the debugger I could see, that indeed the command...
  12. mkendi

    How save are memo fields

    Because I am anxious of losing all of my data in case of a dammaged memo-table, I tend to store my information in char-fields. I know: not very clever. I my current application the information to be stored is very various, so a char-field solution is not possible. So may I ask you: 1. How secure...
  13. mkendi

    Corrupted Form

    One of my most important forms is currupted. If I try to modify it, I get the message: Error loading file - record number 4. <one of it's members>. Parent: Class name is invalid I opened the form as a table and all the memo-fields were empty. But an inspection with a Hex-Editor shows, that all...
  14. mkendi

    Menu is allways enabled

    Although I call a modal form with DO FORM xxx from a menu, the main-menu does not change to his dimmed form, so the user can select the form more than once. In all my other vfp programs the behaviour of the main-menu is as expected: dimmed, after the user has selected a modal form. The only...
  15. mkendi

    How to close the Desktop-Properties-window

    How to close the Desktop-Properties-window If I start my application within the IDE, I use the fellowing codes to make the IDE disapear: HIDE MENU _MSYSMENU PUSH MENU _MSYSMENU DEACTIVATE WINDOW &quot;Project Manager&quot; and then, closing the program, I use POP MENU _MSYSMENU...
  16. mkendi

    Problem with index

    In a table I have a character field with binary information (6 char) and a index for this field. LOCATE finds the searched record, but SEEK returns always TRUE but stays in the first record. The field is created as <char (binary)>. I am using VFP6 SP5.
  17. mkendi

    Character (binary)

    Within the project-manager I am able to add a binary-character field into a table. But how I am able to do this with the SQL command CREATE TABLE? There is only the filed-type CHAR. Thanks in advance
  18. mkendi

    How change backcolor of a COMMAND BUTTON?

    The Command Button has no BackColor property. How do I change this property?
  19. mkendi

    16-32 bit colours and backcolour property

    Hi everybody If the vga-card has an 32-bit colour resolution, the backcolour is set to the values 192,192,192; but if the resolution is 16-bit, the default value for the background is 212,208,200. Because I cannot know the card-settings of the customer, I need a simple way to set the...
  20. mkendi

    GetEnv(&quot;windir') change behavior

    Until yesterday GetEnv(&quot;Windir&quot;) returns &quot;C:\WinNt&quot; But now &quot;%SystemRoot%&quot; What is the reason for this behavior? Thanks in advance Mehmet

Part and Inventory Search

Back
Top