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

    How to test value of multiple fields and update value if neccessary?

    I'm performing a very simple step as seen in the following code: var d = new Date("Cancelled Date"); if (d.getFullYear< "1900") { SetFieldValue( "Cancelled Date", ""); } On the same form, I have several date fields that must also be tested. Rather than write each one out, could someone...
  2. topjimmie

    Oracle DB Web Services confusion-starting out

    Is it possible to enable a PL/SQL query or stored proc as a web service in 11g without standing up a Web App Server? If so what is the required configuration? Do I need anything other than the standard enterprise db package? Additional Info: I am new to Oracle (new job) and my current project...
  3. topjimmie

    strtotime syntax problem I think. Not getting expected value

    I have a POSTed key of hidtimestamp. Naturally, the value of this key is a string. print_r($_POST['hidtimestamp']); Returns: 20100128_18:02 What I want is a DATE object like: 20100128_1802 So, I tried this: $adate = date ('Ymd_Hi', strtotime($_POST['hidtimestamp'])); echo $adate; Which...
  4. topjimmie

    exploding string from array while in loop syntax problem

    I am trying to build a test to explode each string from an array while doing foreach loop. Can someone show me what I'm doing wrong with the array and construction of the statement. All I get in return is 'array'. $posted = array('text1@url1', 'text2@url2', 'text3@url3'); Foreach($posted as...
  5. topjimmie

    Should be easy PHP/MySQL query but having problem with syntax or??

    I know there is a syntax problem here but I just can't figure it out. Trying retrieve eventdetail_id from a table. I have gone through countless permutations of this code and every time it returns as if there is not a matching record (array, etc). I know there is a matching record, and the...
  6. topjimmie

    PHP/MySQL query is simple, but not returning a value. Any advice?

    Need some help if someone would be kind enough to offer. I'm modifying the edit view in JEvents All I'm trying to do is lookup the eventdetail_id from a table. I have gone through countless permutations of this code and every time it returns as if there is not a matching record (array, etc). I...
  7. topjimmie

    Insert output from sendkey into email message body

    My scripting ability is limited. I have an application running in the background that will generate AND INSERT a string into a text editor or field when a key sequence is entered, e.g. I open notepad and press the key sequence, the result is the string. I also have a simple script for...
  8. topjimmie

    Your opinion of Avaya Merlin please

    My company will be moving to a new site, and will need a new phone system. I am involved in choosing it. I am an IT guy, with some telephony experience, but not enough to have an opinion either way about brands or systems. I like the Norstar system, simply because it's the only one I have...
  9. topjimmie

    Towords returns XX/100 rather than 00/100 Crystal 8.5

    I am using towords to display an amount. If the amount is a whole dollar, the decimal place displays XX/100. I want it to display 00/100, but have so far not been able to figure this out. If there is a value other than 0 in the decimal place, everything works fine. Example of current value...
  10. topjimmie

    Front end web site with secure access to Datasource behind DMZ

    I'm leading up to a question here, thanks in advance for weighing in on it!! I have what I consider a standard plan for a website. The front end of the web will be secure and require login by users. In phase 1, this gives them access to several downloadable pdf files only. This part is...
  11. topjimmie

    SQL stored proc gets truncated- structure problem?

    I am new to stored procedures, but seems to me what I am trying to do should be easy. Basically just want to check if table exists, drop it if it does, and recreate it. When I create the stored proc, it truncates the statement after the first GO (after drop table). Can someone please tell me...
  12. topjimmie

    CR 8.5 using MyODBC(any version) not retrieving data

    I have several reports built with CR 8.5 connecting to a MySQL database ver. 4.0.1 using MyODBC (2.5 or 3.51 same result). These reports worked prior to me reinstalling myODBC on my pc. Since I have reinstalled, I have setup exact same MyODBC DSN as the report used previously. Now when I try...
  13. topjimmie

    VPN Primer needed: W2k/Cisco VPN Client/AD/Home network

    I have found bits a pieces, but no definite answers: I am using Cisco VPN client from home network. My PC (W2k pro) is not joined to the domain I am trying to connect to. My user account on this PC does not match my Active directory account on the domain server. I can connect using VPN client...

Part and Inventory Search

Back
Top