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

    Recycle Bin

    Hi all Working on an explorer window in foxpro but I cannot access the recycle bin. I know there is no actual path to it, but I've seen it done in other programs so its possible. I'm on windows 2000 and vfp8. The target is windows 2003 TS (no other os's will be used). I cant get it working...
  2. itflash

    Windows Search

    Hi all Is there any way I can programatically pop up the windows search screen with the directories to be searched auto-populated? What I am trying to achieve is to list files in a number of different directories in one window/form (with icons for the associated applications). Listview does...
  3. itflash

    Array of Controls within an Array

    Hi all have a question regarding arrays. I am in a specific situation and this requires a specific solution. I am re-creating a grid and would like to hold controls in an array. Therefore, the array has columns of textbox, checkbox (all pre-defined) and has rows of integer. Have played...
  4. itflash

    Windows Explorer - Browse

    Hi all My application needs to have the ability to browse file/folders (local/network files/dirs) in a windows explorer style on a form. I need two of these on a form and need to move files between them. Have played with various things, including treeview and windows web browser control...
  5. itflash

    System Tray Application

    Hi all Just writing a small system tray application but run into a problem - probably simply overlooking something. The application has screen=off in config.fpw Then the startup code has the following: DO environsettings.prg x = NEWOBJECT('systray', 'systray.vcx') x.IconFile =...
  6. itflash

    Linked Combos in a Grid

    Hi all In a windows app, is there any way of getting two linked combo boxes into a grid and the grid being bound? Thanks ITflash
  7. itflash

    Windows 2003 Terminal Server

    Hi all Just noticed something in the Windows 2003 Terminal Server that might be useful to someone someday. I use ADO (for one reason or another) in an application. This points to a SQL Server and uses an IP address as the datasource. Recently, I updated the exe but after updating, everytime...
  8. itflash

    Datagrid - New Row Handler

    Hi all Have a datagrid bound to an oledb dataset. I want to be able to add a handler for when a user moves to a new blank row. Reason is that I want to manipulate that record and also want to disable certain columns until user completes other fields. Is this possible? Thanks
  9. itflash

    Help with Locking and Cascade Delete

    Hi all Really need some help with lock and cascade deletes. My app needs pesimistic locking. So i lock records using (updlock, rowlock). Scenario The design is, Table 1 has many records in Table 2. User 1 locks a record for edit in Table 2 (with a trans). User 2 deletes an unrelated...
  10. itflash

    Diagram Cascade Delete

    Hi All Using SQL Server 2000. I have a diagram that I use for ref integrity in an application. I have set up a relationship in the diagram between 3 tables (Table 1 -> Table 2 -> Table 3) and will cascade deletes downwards. However, even though my application is locking a record...
  11. itflash

    String Manipulating & Set Default

    Hi all I have a routine that displays the contents of directories and sub directories and uses the "SET DEFAULT" command. All works fine until the user makes a directory with a " or a ' This causes a problem for my string routines, which think it is the termination of a string. But I need to...
  12. itflash

    IP Addresses and SSL

    Hi all I have a windows 2000 server that works fine and I can see it from the Internet. I use an IP address to access it from my browser and Windows Authenticated password is also used. Now the questions: We need to install SSL. I can grasp how this works and how to set it up, but I have a...
  13. itflash

    Handles for SQL Server

    Hi all My VFP 8 application has lots of classes that fetch data back from a SQL Server using pass-through. Now my question is, should these classes use one global handle variable to SQL Server or have their own and discard them when no longer needed (so inbuilt in the class). Whats the best...
  14. itflash

    Resource Files on Windows 2003 Server

    Hi all My VFP8 application was running in a terminal server environment fine (Windows 2000). My client upgraded to Windows 2003 and my application still works fine. However....non-administrator users get "The Resource File is not Valid" when they run the application. In my...
  15. itflash

    Print Preview Toolbar - Closing

    Hi All When I do a preview for a report, I use the following code: oRepForm = CREATEOBJECT("Form") WITH oRepForm .Caption = "Print Preview" .WindowState = 2 .TitleBar = 0 .Show() ENDWITH REPORT FORM myreport PREVIEW WINDOW (orepform.name) NOCONSOLE orepform.release()...
  16. itflash

    Max and Joins

    Hi All I am struggling with a query. I have 3 tables: Job Key: jobNumber (int). Stage Key: StageID (int) Foreign Keys: JobNumber (int), TypeID (int) Type Key: TypeID (int) Other: DisplayName (varchar) Each Job has various stages in the Stage Table and each stage has one...
  17. itflash

    SP on Different Server & MS DTC

    Hi all (sql server 2000) I have a trigger on "table_1" within "database_a". This runs a stored procedure in "database_b" which performs an update on "table_2" in "database_b". It all works fine. Both databases are on the same network, but we...
  18. itflash

    Table Design Question

    Hi all I have an application that allows users to work through a number of stages of a contract. The form will have tabs, which the user will work through one at a time. They can save and continue later. My question is regarding the table design (SQL Server 2000). Option 1 Do I have a table...
  19. itflash

    Public Sub New - Stop Form Load

    Hi All I have a form that is called by the following code: Dim frm2 As New frm_form1(param1, param2) frm2.ShowDialog() In the "Public Sub New" event of the form, I need to check a value and if this matches, close the form. So I do... msgBox("You cannot alter this...
  20. itflash

    DBTimeStamp Concurrency

    Hi All I have a last amended date for rows in a table to handle concurrency. In SQL Server 2000, it is a DateTime type (8) NULLS. However, I ALWAYS get a concurrency error and it is the date that is causing the problem. Am I doing something wrong with the parameters? Any ideas would be...

Part and Inventory Search

Back
Top