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: *

  1. jomuga

    Rotating Testimonial Help

    Thanks jpadie, will update you tomorrow on how the code works. I am gonna use mysql database.
  2. jomuga

    Rotating Testimonial Help

    I would like to implement the equivalent of an adRotator (in ASP) using php. I would like visitors on my site to see a different customer testimonial every time they visit and a different testimonial as they browse through the different pages on the website. However the best implementation...
  3. jomuga

    Getting query to work

    Have you tried placing your variable in quotation marks? Something like this: "SELECT `phone1` FROM `tps` WHERE `phone1` = '".$TPSNUMBER."'
  4. jomuga

    PHP redirect won't work

    Pete It works if you set output_buffering on. An example of a script where it works is below: <?php if ( (!isset($_REQUEST['username'])) || (!isset($_REQUEST['password'])) ) { echo 'You must enter your username and password to proceed'; exit; } $username =...
  5. jomuga

    PHP redirect won't work

    Thank you jpadie, your comment has explained to me the concept of buffering. I may have to redesign my script. In fact my script was checking the user login credentials and if successful would establish a session variable and then redirect the user back to the page he/she came from. There after...
  6. jomuga

    PHP redirect won't work

    I have finally got the solution for the problem. My header redirects were also refusing to work and it has something to do with buffering caused by having other code before the header line. Go to php.ini and change the setting for output_buffering. Set it to: output_buffering = 4096; It should...
  7. jomuga

    PHP redirect won't work

    I am having a similar problem. Have you got any answers to this question?
  8. jomuga

    How do i turn off the report tooltips?

    This is another trivial one. I am using vb .net crystal reports. I develop the crystal reports - outstide the vb environment -using crystal reports 9 and i add them as embedded reports to my .net applications. I do turn off the tooltips at the preview mode of the report. This works at the...
  9. jomuga

    How do i switch database servers in crystal reports?

    Gonna check if Save with data is turned on. However, i had got a way; i.e by the use of a typed dataset. I would then use .net to connect and retrieve the data and then set the report datasource to the dataset. I tried this method and got the results i needed. Thanks a lot guys.
  10. jomuga

    How do i switch database servers in crystal reports?

    I need help on how i can switch between database servers using the same report. My application is developed using VB .Net 2003 Professional and SQL Server 2000. My users data resides in tables with the same structure but on different servers. When a user logs in he/she selects the server...
  11. jomuga

    ItemData equiv in .NET ComboBox

    The equivalent of itemdata in combo boxes is the property "ValueMember". For example assuming you have the following objects: 1. ComboBox named cboItems 2. DataTable "dtItems" having the fields(columns) "ItemID" and "Item" Bind cboItems to the data source dtItems and set the following...
  12. jomuga

    Installation Error of a VB6 Application. Help....

    I thought so and i installed Crystal Reports 9 on the machine but the error persisted even after then. About Inno setup i have the program but i do not know how to use it!
  13. jomuga

    Installation Error of a VB6 Application. Help....

    I need help with a setup program - VB 6. I installed my application on a Win XP machine but it failed to complete the setup citing failure to register one of the dll files which come with Crystal Reports. I ran the same setup file on different machines running Windows 2000 and Windows XP and it...
  14. jomuga

    Setup.exe error!

    I need help with a setup program - VB 6. I installed my application on a Win XP machine but it failed to complete the setup citing failure to register one of the dll files which come with Crystal Reports. I ran the same setup file on different machines running Windows 2000 and Windows XP and it...
  15. jomuga

    Datareports in one Main Datareport

    Grouping as it sounds refers to a situation where you have to arrange your data in hierarchy. For example if you want to return employees per department then you have to group them by department. This will be useful where you need to show, for exampe, the department name and a list of employees...

Part and Inventory Search

Back
Top