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 SkipVought 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. yamyam

    Xamarin c# deserialization

    Hi, Please help - How would I deserialize the following JSON into a Xamarin List using c# [ { "JobID": 397597, "CustomerId": "ENV" }, { "JobID": 397694, "CustomerId": "UNI015" }, { "JobID": 397836, "CustomerId": "AMA003" }...
  2. yamyam

    vbSendmail issue with the RFC 821 1000 character limitation of a line

    Thanks, I have the code I previous changed the mx query side to add in new TLD's. I was going to make the change described but was worried about the RFC 821. Thanks again.
  3. yamyam

    vbSendmail issue with the RFC 821 1000 character limitation of a line

    Hi, Does anyone know how to get around the 1000 character line limit using vbSendMail? When I send a line of a 1000 characters asHTML the email message has a ! in the message? Thanks
  4. yamyam

    Reflections Attachmate with OpenVMS

    We currently use eTerm by Dcsi - http://dcsi.com/product/e-term32/
  5. yamyam

    DCL: Counting number of user processes for a period of time

    Hi, Output the output of the show process to a file /out=name.txt or define sys$output sys$login:file.txt The read the file looking for the process name extracting the name open/read proc_list sys$login:file.txt read proc_list proc_line the proc_line symbol will give you the information then...
  6. yamyam

    Small Business Server 2011 Standard - Exchange?

    Hi, You can set up an exchange pop collect to that will collect the mail from your existing mail servers. You then configure the mail to be in SBS at a 5 minute interval. The mail will then be stored locally in the specific users mailbox.
  7. yamyam

    CR 8.5 Joining tables with no Join

    Hi Kray4660, I used to have the values in a formula but they now want to tweak the values to get to the amount they want to pay. This is the reason the table was introduced. Thanks for your ideas, I have just found an old 8.5 manual, I am looking at the options. I know I can do it using a SQL...
  8. yamyam

    CR 8.5 Joining tables with no Join

    Hi, I am trying to join to tables with no key. The tables are employees and bonus. employees Surname Start Date smith 01/09/1998 jones 09/11/2010 brown 08/08/2009 bonus 01/01/1970 0.1 01/01/2009 0.075 01/04/2010 0.05 based on the start date I wish to give...
  9. yamyam

    Crystal Reports in VB6

    Crystal Report was included with VB6 professional. It was installed from disk 3. The OCX etc is available on that disk it also exists in visual studio\common files\ etc.
  10. yamyam

    Merging a PCL image into PCL document from PICK Basic

    try using macros and overlays
  11. yamyam

    How to get and return results from pop-up window?

    Please help, I am in a similar position but in the example i would like to programatically pass the element that I want to populate. Eg I have a calendar that is called 3 time in the master form to update 3 different ids such as birth date, mother birthday etc. Thanks
  12. yamyam

    SBS2003 AND A TERMINAL SERVER BOX

    You could use this addon, it will host upto 21 RDP sessions on a SBS server. http://www.thinsoftinc.com/index.aspx
  13. yamyam

    Signature Capture

    try this - sample code from microsoft : - http://www.microsoft.com/downloads/details.aspx?familyid=07675EA6-CC67-4033-80BE-96F0C00B0CE6&displaylang=en
  14. yamyam

    Connection to SQL Server over Wireless

    If the PPC goes into sleep mode, the WIFI has to refresh and connect to the network before the database can be connected to. I need the program to loop and wait for the connection to be made to the db.
  15. yamyam

    Connection to SQL Server over Wireless

    I am trying to connect to a SQL server on a PPC using wireless. Most times the wireless is connect and the program connects to the db happily. On certain occasions it fails and I get error message Server does not exist. I tried to catch the connection.open command connDB = New...
  16. yamyam

    Sleep Producing Error

    The error message is Object Required 'wscript' Src: Microsoft VBScript Runtime Error Line 14: Error 0 Scode 800a01a8
  17. yamyam

    Sleep Producing Error

    Act supports VB script because it is shown in the examples they provide. I am trying to extend the script by calling an access function to see if the entry of an order has been completed in some bespoke software. Which is when the IsFinished function will return true. I want the program to loop...
  18. yamyam

    Sleep Producing Error

    The following command is producing an error on the sleep line. This is vbscript executed from within sage Act. do until accessapp.run("IsFinished") = "True" wscript.sleep(1000) loop Please help...
  19. yamyam

    Returning a Value back from an MS Access Function in VB Script

    I am trying to use the returned code from a function in MS Access to determine what futher events i need to act upon with my vb script code. set accessapp = createobject("access.application") accessapp.run "GetCurrentPrice" GetCurrentPrice returns the current price of an item if > 50 then...

Part and Inventory Search

Back
Top