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!

Search results for query: *

  • Users: petrosky
  • Content: Threads
  • Order by date
  1. petrosky

    App to run powershell scripts against 365 admin portal.

    Hi There, I'm looking to write something like this https://www.reddit.com/r/sysadmin/comments/4east7/office_365_administration_center/?limit=500&st=jaun2a6u&sh=64086d5e for my own use as a 365 admin. Unfortunately I missed the boat when the app was in development. I assume it is a WPF...
  2. petrosky

    There was a problem connecting to the server "server"

    Hi there, I am very new to the Mac OS. I submitted an adobe form that was misconfigured to submit to a companies internal server. Now every hour or so I get a pop up stating There was a problem connection to the server "TheirInternalServerName". The server may not exist or it is unavailable...
  3. petrosky

    Help with MVC example.

    Hi there, I am following this tutorial in an effort to have a better understanding of MVC frameworks. http://www.phpro.org/tutorials/Model-View-Controller-MVC.html Alas I have downloaded the files but I can find no way to call data from a model. The example merely shows hard-coded vars in...
  4. petrosky

    Help with cakephp handling multiple related records.

    Hi there, I am a relatively new user of the cakephp framework. I am creating an internal application for employees to be able to enter orders. I currently use jquery to add rows to the "many" side of the order. Eg. One order can have many products and notes. So jquery is currently appending...
  5. petrosky

    Python sendmail reports time sent incorrectly.

    Hi There, We have some processes that execute python scripts overnight. At the end of the process and automated email is sent. We recently had to move to our ISP's SMTP server. Now, emails seem to appear before the scheduled task runs! I just ran the following as a test at exactly 3PM and it...
  6. petrosky

    Help with VLAN between 2 Netgear switches

    Hi there, Apologies if this is an inappropriate forum for my query. I have 2 Netgear FSM726S switches connected via a port trunk on ports 25/26. I have created a VLAN with PVID of 5 on both switches. Assume I have added ports 1 and 2 on both switches to VLAN 5. and removed ports 1 and 2 from...
  7. petrosky

    Logging strange events on local webserver.

    Hi guys/gals, I have a very basic intranet website for internal reporting. Recently I built in some user tracking on the site that logs areas different users visit. In the logs I notice "hits" coming from another machine on the LAN that should not be using this resource at all. The apache...
  8. petrosky

    Select with sub-query.

    Hi there, I am trying to query a products table that lives on ServerA for products that have > 0 inventory and sub query a transaction table on ServerB for sales in the last six months. Basically I want to display products that we have on hand that havn't sold in 6 months (bad retail!) Here...
  9. petrosky

    Possible Try Catch usage.

    Hi there, I am very new to trapping errors in PHP. I have an application that has a fixed number of licenses for clients to connect. One of my PHP scripts consumes a license. Basically I want the script to attempt the connection and if it fails due to no available licenses to sleep for 30...
  10. petrosky

    Select last word in a string.

    Hi, I have a SQL statement that currently selects the left most word of a Description field to return a brand only. Some products have the brand as the last word in the Description field. How would I go about selecting the Last word? Should I be approaching this from PHP? Here is the Left...
  11. petrosky

    AJAX help with dynamic select.

    Hi there, I have a select box that fires this onChange event. var xmlhttp; function showUser(str) { xmlhttp=GetXmlHttpObject(); if (xmlhttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="getuser.php"; url=url+"?q="+str; url=url+"&sid="+Math.random()...
  12. petrosky

    Fire event on Dynamic Select if exising record.

    Hi there, I am still finding my way in the world of PHP. I recently found out about AJAX and am trying to use it on an order form. A Customer can have many Contacts. My dynamic select works like this. <td><select name="CustomerContactID" onchange="showUser(this.value)"> <option value...
  13. petrosky

    Drill down through recordset.

    Hi there, I am trying to produce a form that POSTs to itself and limits the recordset used to display the page. Here is what is working thus far... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head>...
  14. petrosky

    Advice on possible self join or subquery.

    Hi there, I am quite new to MYSQL and come from a MS Access background. I have a sales transaction table and can create a query that will give me aggregate totals for a certain period of time for various product groups. SELECT groupslink.Group as GroupName, sum(Quantity) as QuantityTotal...
  15. petrosky

    Problems displaying currency values correcly.

    Hi, I have checked the web and here and can't seem to find my exact problem listed. I have MYSQL ver 5.0.45 & PHP ver 5.2.4. I am running a simple snippet of code below to gather data stored as decimal(10,2) Running the query in MYSQL or phpMyadmin will return only one Sale price, correctly...
  16. petrosky

    Please help with complex query/queries...

    Hi, It has been a while since I got my hands "dirty" with access so I hope someone can shed some light for me. I have a very large table containing transaction history. It dates back to 2005 and is approx 700K records. My data looks like the following sample data. DateSold Quan Product...
  17. petrosky

    Internet Explorer opening and closing silently...

    Hi, This is driving me nuts. Basically it opens, then closes every 30 seconds or so...steals focus from any window including this one, then returns focus after approx 2 seconds...obviously frustrating to say the least I have completed full A/V and anti-spyware scans - all clean. I have also...
  18. petrosky

    Help with advanced search capabilty...

    Hi, I am trying to emulate a native PICK application's product search system...(long story.) Anyway, I have no problem assigning my search forms recordsource to the value of a TextBox but I want the users to be able to "drill down" the search options. eg. I have the following. On Error GoTo...
  19. petrosky

    Give focus to existing IE window and print out.

    Hi, I have a user that browses to an intranet pricelist (the page is print ready) My problem is that he needs to print various quantities of the page to various printer locations. I thought I would try to whip up a script for him to save mouse clicks & time. Here is what I have got from much...
  20. petrosky

    Strange IIS permissions problem.

    Hi, I have a site that resolves correctly from my LAN clients using the following address. http://servername/website However, I have now set it up as a new website (using the same permissions as the Default Website) and created a DNS record for "intranet" and pointed it at my server...

Part and Inventory Search

Back
Top