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

    Simple field question

    Hi, Have do you set the text color of a field? I've looked for ages and can't find an answer or bit of code. Thanks in advance Mark
  2. anyideas

    How to use radio buttons

    Hello, I have a list of 3 dates, each of which shoud be associated to a radio button, therefore only one radio button should ever be clicked. How do you do this in director 8.5? I've tried using the following code to determine if a checkbox was clicked and it returned "sprite 119" -...
  3. anyideas

    timer question

    Hi, I'm trying to create a countdown timer that last 60 seconds and depending on the time left of the timer updates a text field showing this. However, I need to get this to work as the movie is playing and not just static on one frame. I'm using director 8.5 to create in. If anyone can...
  4. anyideas

    network access problem

    Hello, I'm opening an excel file on my local machine using a unc address as below: Set objExcel = objExcelApp.Workbooks.Open("\\x1032NT4\c$\devImplem\welcomeLetter\wordFormat\DataFiles\" & datafile) However, if I specify I different network machine on the LAN it falls over with an...
  5. anyideas

    Setting Form Field Background Property

    Does anyone know how to set a form field background colour in vb? I'm basically trying to show where the form fields are on a pdf document for input. Cheers Mark
  6. anyideas

    Setting Form Field Borders in vb

    Hi all Does anyone know how to set a border on/off in vb using the APToolkit Object? Cheers Mark
  7. anyideas

    Progress Bar?

    Hi, I have a while loop which takes about 30 seconds to a minute to complete... it creates a 100mb pdf file. Can I put a progress bar into the form to show the status of the loop, and if so, how? Mark
  8. anyideas

    Help - Content Stream and Fonts

    Hello All I converted a word doc file to a pdf which was about 5mb before I started editing it. The pdf file is now down to 80kb but 32kb of that is used by fonts and 27kb by content streams according to the space audit report. Does anyone have any ideas why these are so large and how I might...
  9. anyideas

    using VBA to mail merge with word / excel

    Hi All. Has anyone got any examples of mail merge with word and excel using vba. I've got to select only specific excel records to merge into specific areas of the word merge file. If you've got office 97 files brilliant, otherwise can you send them anyway, cheers. Any help really...
  10. anyideas

    Convert small vbApp to vbscript

    hi, I'm have an vb app that interacts with a wsdl file on a LAN server(simber), (me being the client). It basically uses CallView Client to initiate manipulate and end calls. I'm trying to convert the code to vbscript to run either on the client(prefered if possible) or on another server...
  11. anyideas

    selective mail merge with word 97

    Does anyone know is it possible to have multiple pages in a Word doc, and do a sectional mail merge? Have the same datasource for each page, but select which pages to merge / print on passed data from the xls file. If not in Word, does anyone know how to do this programatically? Also, does...
  12. anyideas

    Dymanic mail merge word??

    Hello. I have a word merge file and I want to know if the following is possible: If a value in the xls file = 2, I want word to merge the current .xls row twice. If so, does anyone have any examples? Thanks Mark
  13. anyideas

    enforce line break in xsl

    hi I have an xml element whos value is loaded from a database and may contain a vbcrlf. When xsl renders it, the vbcrlf is ignored and everything is written on one line in the browser. Does anyone hane any ideas on how to enforce a line break when the break is in the xml element? Thanks Mark
  14. anyideas

    span question??

    I have a span in an asp page and at the moment I do the follwing: The include file pulls info from a database. <span name=&quot;spnTblHistory&quot; id=&quot;spnTblHistory&quot;> <!-- #include file =&quot;tables\tblCustomerHistory.asp&quot; --> </span> The problem: I need to reload the info...
  15. anyideas

    help - XML new line

    Hello All. I'm tring to include a tag in an XML document to start a new line when it gets rendered in XSL. strDocSentXML = &quot;<Notes>a, &quot; & vbcrlf & &quot; b</Notes>&quot; output should be: a, b I've tried using the following and listed the results: vbcrlf, cr, lf, chr(13) - does...
  16. anyideas

    redim preserve multi dimension array problem!!

    hi all, I have an array: errorArray(20,20) I can redim the array: redim errorArray(15,15) But I can't redim preserve the array: redim preserve errorArray(15,15) Does anyone know why?? Cheers Mark
  17. anyideas

    Position of popup window??

    Hi All. Is there a way to set the position of a popup window?? I've got this so far: window.open(&quot;subforms/popNewContact.asp&quot;,&quot;newContact&quot;,&quot;resizable=no,width=700,height=100&quot;) Cheers in advance Mark
  18. anyideas

    accessing script src file for server side use

    Hey All. I have an asp file called errorCheck.asp which contains a function: Function Blah() blah blah End Function Theres no <% or %> or <script> tags in this file as its referenced using: <script src=&quot;errorCheck.asp&quot;> </script> I now want to access that function server...
  19. anyideas

    Previous / back page

    Does anyone know the command equivalent to the back button on the IE browser? Cheers Mark
  20. anyideas

    simple stored proc undate problem

    hi, I'm trying to update several columns in a row, but am running into problems. If anyone can help I'd appreciate it... the database is sql2000. cheers mark CREATE PROCEDURE op_CSUpdateCustomer( @CustomerID int, @CustomerTitle char(20), @CustomerFirstName char(40), @CustomerLastName...

Part and Inventory Search

Back
Top