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

    SonicWALL Mobile Connect on Chromebooks

    Hello All, We recently picked up 15 Chromebooks from our good friends at Dell. My plan is to use our Google Apps domain to force install a number of apps on the Chromebooks through their managed policy. One of these apps is the SonicWALL Mobile Connect client. I would love to be able to include...
  2. cbsarge

    Selection list into localstorage but, values are not 0 through x???

    I have a selection list that is populated by a bunch of items. Each item has a unique ID number that is stored in the value part of the option. I want users to be able to return to the page and using localstorage have the selections made on previous visits be what they see. For one list which is...
  3. cbsarge

    Checkbox to change width of body background image?

    I have simple Chrome extension that injects some html into a game webpage that lets a user customize the background image of the webpage. It stores the URL of the image with setlocalstorage so that when they return to the game the custom background image is still there. I've included some CSS...
  4. cbsarge

    use a variable's value from another page?

    I'm not sure if PHP is the right way to do this so if it's not please tell me :) I'd like to create a webpage where someone can go an plug in a link to a replay page from a game I play. Normally this page just shows the battle scene. The page also contains a variable named fvars that contains...
  5. cbsarge

    selection list value in cookie to maintain selection when user returns

    I have a javascript function that uses a bunch of selection lists, some containg numbers and some containing text, and was wondering how I could save the selected values so when the user returns to the site the previously selected items are already selected. So if I had a selection list like...
  6. cbsarge

    strip commas from form based calculator?

    I have the below calculator and was hoping there was a way to strip out commas that users may inadvertently paste into it. Thanks for any help! <form name="calculator"> <table border="4" cellpadding="1" bordercolor="#FFFFFF" bgcolor="#73B27B" cellspacing="2" width="222"> <tr> <td>...
  7. cbsarge

    Chrome extension to add more options to selection list?

    I'm trying to figure out some javascript to use in a Chrome extension. The idea is to add some more options to a drop down list so players have some more choices. I've used the getElementByID function to add some html to existing divs but, this doesn't seem to be an option here as there is no...
  8. cbsarge

    set initial value of a variable?

    I have this script and I would like to set the initial value of a variable that the script can later set with a drop down but, can;t figure it out. I'm sure it will take one if you a few seconds! :-) javascript:(function() { var previousInnerHTML = new String(); window.onload =...
  9. cbsarge

    fire function in iframe page from outside the iframe?

    I am trying to build a page that is basically a toolbar to use with an online game. The game is all run in a webpage and all my toolbar will be doing is giving quicker/easier access to things already in the game. In this scenario there are consumable objects in the game that are used by the...
  10. cbsarge

    2 external DNS domains - 1 internal AD domain - cert question

    We are getting ready to go through a rebranding of our comapny. We currently have access for our mobile devices and OWA users using the current domain name. OWA and smart phones work great. We have a retail cert installed to make them all work without any extra handling. The new domain name was...
  11. cbsarge

    add input boxes and alerts to this script?

    I'm trying to add input boxes so that when this is used people can put in values and then alerts when the script is run based on the results. The script was provided by another user who is difficult to reach to help modify this script. I would like the variables A2 and B2 to be the values input...
  12. cbsarge

    onclick function passed to an iframe?

    I have a page that loads some floating divs that have onclick links that target an iframe. I page that loads in the iframe is not mine. It uses the Facebook connect function to tie in to FB accounts. They do not have a link to "log out" and I was thinking I could add a log out function to one of...
  13. cbsarge

    Remove retired/missing device pools?

    This is more of an annoyance than anything but, in Backup Exec 12.5 we have a device pool for a server that is no longer in service. When I select "All Devices (RETIRED_SERVER)" under Device Pools it correctly shows no devices. What I would like is to be able to remove the "All Devices...
  14. cbsarge

    web-ui plugin for 5.6 only on pool master?

    Is it possible to have the xml for a Xencenter plugin query in such a way that the plugin only displays on the pool master? I have the following plugin for a web interface and would like it to only show on the master. I don't want to rely on tagging as the master role might change. Thanks for...
  15. cbsarge

    Meet Now email template location?

    Where is the template stored for the email that is generated when a user clicks on Meet Now in the Office Communicator client? Our client version is 3.5.6907.221 and our server is 2007 R2 Standard. We are using a custom port for the web conferencing and it isn't picked up in the email...
  16. cbsarge

    How do I pause this function?

    I'm trying to get a short (5 second) pause in the following function and can't seem to get it to work. I've been trying to maybe use setTimeout but, can't get it to work. <script type="text/javascript"> function newBrowser() { var i=1; for (i=1;i<=varNUM;i++) { window.open(varURL); } }...
  17. cbsarge

    hta application to submit url and create multiple tabs

    I'm trying to build an hta that will accept a number (for the number of tabs) and a URL (opens in all the tabs). These 2 values are to be input by the user. My work in progress below is NOT functioning. :-( Can someone help? <head> <title>test app</title> <HTA:APPLICATION...
  18. cbsarge

    vbscript input greater than 254 characters?

    I have a script that uses an input box to accept a URL. The script is now failing because the URLs are much greater than 254 characters. Is there any method in a vbscript that can accept input greater than 254 characters and asign the input to a variable? Here is the line as it exists now...
  19. cbsarge

    is this vbscript possible using javascript?

    I'd like to convert this to javascript so I can use it in a webpage but, don't know where to start. Is something like this possible? On Error Resume Next Dim strProgram Dim strNum Dim strURL Dim WshShell MsgBox "message text", vbOKOnly, "title" strProgram = "chrome.exe" strNum =...
  20. cbsarge

    form to accept a url and create X tabs with that URL

    I'd like to create a form that accepts a URL pasted in by the user and then also creates an input number of tabs with that URL. I have a vbscript that does this but, thought it would be nice to have it in a webpage. Is this something a simple <form> is capable of or will something like...

Part and Inventory Search

Back
Top