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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by GrigoreDolghin

  1. GrigoreDolghin

    MSHFLEXGRID examples

    Hi, Borislav You've got a star :) Thanks for referal to my forum. :) Grigore Dolghin Class Software Bucharest, Romania
  2. GrigoreDolghin

    'Upgrading' from Access to VFP

    Just to make sure I am coherent (my native language is not English): align text to right, enter text and field goes to left as needed. Grigore Dolghin Class Software Bucharest, Romania
  3. GrigoreDolghin

    'Upgrading' from Access to VFP

    Altough I'm a dedicated VFP developer (12 years experience), I had the opportunity to work in Access. Well... there is a thing in Access I would love to see in VFP: report writer. IMO Access is better here than VFP (however, VFP 9 changed this). Still, I'd love to see a "right-align text" option...
  4. GrigoreDolghin

    hide invalid sql login password windows while accessing remote server

    Hi, You can set the connection's .DispLogin property to 3 to prohibit that dialog to show. Problem is you need to have a connection to set it's property, and that connection may show the dialog :). It's a vicious circle. Fortunatelly, VFP is smart enough in this. SQLSETPROP(0,"DispLogin",3)...
  5. GrigoreDolghin

    SQLStringConnect() to MSAccess?

    Badukist, Thank you so much. A star here and three in UT, right away :) Grigore Dolghin Class Software Bucharest, Romania
  6. GrigoreDolghin

    SQLStringConnect() to MSAccess?

    Hello, everyone I need to connect to a .mdb database, to read/write records in it. In my application I use SQLStringConnect() to connect to MSSQL Server and MySQL. The mdb has it's own workgroup system database (mdw). Does anyone know how the connection string looks like? Or, maybe, a link to...
  7. GrigoreDolghin

    Partial database replication

    Hello, everyone Is possible to synchronize only some of the SQL Server tables using database replication? If yes, how? Thank you. Grigore Dolghin Class Software Bucharest, Romania
  8. GrigoreDolghin

    How to avoid the startup slowness

    Hello, Whenever I double-click the exe, the form shows up and I can see how the controls are drawn. Very fast, it's true, but I still can see them. I expected VB.NET to draw all the controls before showing the form. How to avoid this? Is there a way to make it draw completely the form and put...
  9. GrigoreDolghin

    TreeView is killing me. - help!!!

    Hello, a) No, you don't have to pay b) Yes, InstallShield registers the ocx - you can do this manually also - it's stored in mscomctl.ocx. Copy this file in System or System32 folder and run "regsvr32 mscomctl.ocx". c) The images are stored in another control, found in the same ocx...
  10. GrigoreDolghin

    Database diagram

    Hello, I am writing a tool to update MSSQL databases in production. Besides creating new tables/views/stored procedures, I'd like it to be able to create the diagrams I made in the mean time. Is there a way to script existing diagrams, or any other way, to run the code at production site and...
  11. GrigoreDolghin

    Why Requery() will not update combox with new data

    Hello, I believe you are confusing view's Requery() with combo's Requery(). They are different things. Your code should look like this: Requery("view") && it will download new data Thisform.Combo.Requery() && fill the combo with the data Hope this helps, Grigore Dolghin Class...
  12. GrigoreDolghin

    VB.NET completely green

    Hello, everyone I am coming from Visual FoxPro, where I know what I have to do almost every time. Now I'm trying to switch to VB.NET, a completely new language for me. Extremely frustrating. In VB I am a complete moron :) Two simple questions: 1. How can one make a completely transparent...
  13. GrigoreDolghin

    VFP 7.0 EXE Run-Time Behavior

    Hello, Place a CONFIG.FPW file in the same directory as the Exe, and write SCREEN=OFF in that file. The next step depends on how you built your app. If the app consist in one central form, make sure it's set ShowWindow=2. Hope this helps Grigore Dolghin Class Software Bucharest, Romania
  14. GrigoreDolghin

    Completely green

    Thank you so much... Grigore Dolghin Class Software Bucharest, Romania
  15. GrigoreDolghin

    Completely green

    Hello, everyone Guys, I have a dillema: I am a seasoned VisualFoxPro programmer. I had the chance to work in a true OOP programming language since 4 years ago, developing mostly client/server apps. Now, it's time to move on. I have my own copy of Visual Studio .NET Enterprise Architect. As...

Part and Inventory Search

Back
Top