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. frogjumps

    pop-up Reminder/Scheduler??

    got the eCRM (open-source)almost done...solved a few MAJOR hurdles...thanks to the crew at Haneng...now I'm trying to figure out how to implement some kind of call scheduler..that can pop-up at a given time (when rep schedules a call back to customer) I know ASP is static..so I was thinking...
  2. frogjumps

    display related table info also

    this : WHERE customers.custid=" & valueof customeridyouwant" How could I change this to the currently displayed record? or the current rs returned CustID value? FrOg 8)
  3. frogjumps

    display related table info also

    as far as filtering the rs notes, how would I do this... as for the WHERE clause, I need to return ALL records and the associated Notes related to these records (if any). Why should I use the Left Join, instead of the Left Outer Join? FrOg 8)
  4. frogjumps

    display related table info also

    I have 2 tables in Access, 1 customers, 1 notes. these are related by customer can have many notes. I cannot get the notes to display for each customer. It displays ALL notes for ALL customers, instaed of just the notes for displayed customer. here's the code...
  5. frogjumps

    wanted: open source code for something like this.....

    Hello ppl, I am looking for something similar to OnContacts eCMS Client Management Software. http://www.oncontact.com/product/ecms.htm Does anyone know where I might be able to get open source code for something like this. FrOg 8)
  6. frogjumps

    looking for open source or similar : eClient Management

    Hello ppl, I am looking for something similar to OnContacts eCMS Client Management Software. http://www.oncontact.com/product/ecms.htm Does anyone know where I might be able to get open source code for something like this. FrOg 8) FrOg 8)
  7. frogjumps

    WTF is wrong w/ this code...it''s driving me NUTZ!

    Here is ALL my code: It only returns the value of &quot;1&quot;, it never adds &quot;1&quot; to the returned value. I can have the number 20 returned but it will not add 1 to it..!!??? <%@LANGUAGE=&quot;VBSCRIPT&quot;%> <!--#include file=&quot;../../Connections/rma.asp&quot; --> <% set...
  8. frogjumps

    WTF is wrong w/ this code...it''s driving me NUTZ!

    Here's the CODE I have got so far: <%@LANGUAGE=&quot;VBSCRIPT&quot;%> <!--#include file=&quot;../../Connections/rma.asp&quot; --> <% set rsLastRMAnum = Server.CreateObject(&quot;ADODB.Recordset&quot;) rsLastRMAnum.Source = &quot;SELECT RMAnum FROM RMA_Entry&quot; rsLastRMAnum.Open() Dim...
  9. frogjumps

    WTF is wrong w/ this code...it''s driving me NUTZ!

    HELP.... I cannot get this to work..wtf am I doing wrong? <code snip> Dim iLastRMA Dim sLastRMA '** get iLastRMA from the database iLastRMA = rsLastRMAnum_last '** trim all the alpha characters from the returned value '** ie.. 020102AH1 trimmed to &quot;1&quot; iLastRMA = mid(iLastRMA...
  10. frogjumps

    Wireless Text Messaging

    Using a Web Service to Send SMS Text Messages in ASP.NET By: Darren Cosker The code snippet supplied uses a web service that can send an SMS text message to 90% of all mobile phones. Before using the below code you must link the web service...
  11. frogjumps

    auto increment the last digit in the returned value

    how do I &quot;recall&quot; the results from the database and reset it automatically every new day? FrOg 8)
  12. frogjumps

    auto increment the last digit in the returned value

    I need to auto increment the last digit in the returned value of the following: (iLastRMA) how do I do this, I also need to be able to reset this value daily. Is this even possible? '** <begin code snip> '** get iLastRMA from the database sRMAnum =...
  13. frogjumps

    auto increment the last digit in a returned value

    i need to auto increment the last digit in the returned value of the following, how do I do this, and it needs to be reset daily. is this even possible? <code snip> <% Dim sRMAstring Dim sTDate Dim sRMAnum Dim iLastRMA Dim sRuser Dim sUser Dim vDate '** Todays Date in this format (ie...

Part and Inventory Search

Back
Top