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: csimion
  • Order by date
  1. csimion

    Sum query

    I don't see you to have any GROUP statement. Try to group the records by a criteria, even if you need the sum of all the records. Cristian ******************************** It's nice to be important, but it's more important to be nice.
  2. csimion

    How to make Postgresql start up with Linux Boot

    The most simple answer under Fedora is: under a Terminal console, enter as root and start ntsysv there make sure that the postgresql is checked. That's all. I should start automatically when you reboot. Cristian ******************************** It's nice to be important, but it's more...
  3. csimion

    ComboBox

    Could you, please, post that source as a FAQ? thank you Cristian
  4. csimion

    Trouble Displaying Query Grid

    I had the same problem. Here's the solution: every time you need the grid to display the qry, you have to reassign the RecordSource property of the grid. That's all, you don't have to do some refresh or anything. Good luck. Cristian
  5. csimion

    Delete space in file name

    Try copy to 'toto' + alltrim(no) + '.dbf' Cristian
  6. csimion

    Report withoute any tabel

    after "SELECT * FROM SYS(2005) INTO CURSOR myCursor" write REPORT FORM myReport next 1 Good luck Cristian
  7. csimion

    question about list

    Try using the .Requery method on the list. Cristian
  8. csimion

    how to read price code

    You can solve this using a single formula: chrtran(str(price),"1234567890","volumetric") Good luck. Cristian
  9. csimion

    Power off not working with Linux shutdown

    What command are you using? If you are using shutdown or halt, try using poweroff. I had the same problem, but it's solved by this command. Good luck. Cristian
  10. csimion

    Security, /etc folder and passwd/shadow file permissions

    I am subscribing too to the above idea. Complete reinstall is the best solution. Good luck! Cristian
  11. csimion

    Update to lastest version of Samba?

    Try installing the new Samba with rpm -Fvh --nodeps *.rpm then, start samba and look for any errors in the log files. If it needs some other packets, find them using http://www.rpmfind.net. Good luck. Cristian
  12. csimion

    Apache & FrontPage

    try: http://www.rtr.com/fpsupport/ or use http://www.google.com to search frontpage extensions Good luck Cristian
  13. csimion

    How do I allow remote root login?

    Using Telnet you can't allow remote root login. Anyway, you can allow remote access as an usual user, then, using su - the user can change in the root user (by typing the root password). Or, you can use a ssh client which allows any type of login. Check your /etc/hosts.allow file for the hosts...
  14. csimion

    How to return more than 1 value from RETURN command.

    You can use global variables (public ones) thet you can set in your form. Try something liuke this: public returned1,returned2,returned3 do form yourform && the form will initialize the variables ......... *here you should use your returned values release returned1,returned2,returned3...
  15. csimion

    smb configuration error

    You should try to go to http://us1.samba.org/samba/docs/ and look for a Troubleshooting guide. Follow exactly the instructions you're gonna find there (They're gonna ask you to configure samba the way they want to, for debugging), and you're gonna solve your problem with ease. Good Luck
  16. csimion

    Incorporating Excel

    You should try EXPORT TO FILENAME.XLS TYPE XLS It should be easyer. Good Luck!

Part and Inventory Search

Back
Top