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: *

  1. stephenmbell

    VBA - Create Pass Thru Query without ODBC DSN??

    That looks like it may work. What happens if the database is shared? And furthermore, what happens if it is shared and more than 1 person goes to run this process at once? Thanks for the response sb
  2. stephenmbell

    VBA - Create Pass Thru Query without ODBC DSN??

    Thank you. I know how to create a connection via ADO. The end result that I am looking for is to simply open a "table view" result set in access. Basically, click a button, open a query to be displayed to the end user. I don't know how to do this easily with ADO. Is this possible? Thanks sb
  3. stephenmbell

    VBA - Create Pass Thru Query without ODBC DSN??

    Is it possible to programatically create a pass thru query that connects to SQL server without having a DSN on that machine? I can't seem to get it to work. Thanks sb
  4. stephenmbell

    IIS 5.1 on XP - Modify with vbscript?

    Hello all, I have roughly 650 windows xp machines running IIS 5.1 that I need to modify the home directory (among other things). I am wondering if there is a way to automate this process with a vbscript?? I have been searching all of my scripting resources web sites and I cannot seem to find...
  5. stephenmbell

    Can I push out Local Security Policy Settings Remotely?

    Wouldn't GPO's only be applicable if my machines were a member of a domain? Thanks for the replies sb
  6. stephenmbell

    Can I push out Local Security Policy Settings Remotely?

    Hello, I have a network that I manage - it has 700 windows XP based PC's (SP2) in a total of 350 different locations. These machines are accessible over a WAN connection from my desk - and they are not joined to any domain. I am looking for a way to configure certain settings...
  7. stephenmbell

    problem with tr.nextSibling - not getting expected results

    I am trying to implement expand collapse functionality in an html table. I am using aptana and firebug to debug this. I think the problem is coming on this line, but I cannot figure out why.. var tr = img.parentNode.parentNode; var next_tr = tr.nextSibling; // this is the problem line...
  8. stephenmbell

    Problems Setting up IIS on server - Authentication??

    I am looking to setup both a dev server and a production server for our company's intranet - intended to run some asp.net 2.0 applications & possible SQL 2005 I just setup a fresh installation of Windows 2003 server (standard edition), ran all of the windows updates, and installed IIS on it -...
  9. stephenmbell

    Limit the characters in a multiline textbox

    What I am attempting to accomplish is a vb app that will create a specially formatted text file to be printed on a special printer (similar to receipt paper - hence the 22 char width restriction) So I have a multi-line text box on my form, and the user types in the text they would like to be...
  10. stephenmbell

    Limit the characters in a multiline textbox

    That is correct, I do not want to limit the number of rows of text in the text box, but I would like to limit the "width" or columns to 22 characters. Would this maxlength property work? or would this limit my total length of the string inside the box to 22 chars? thanks in advance sb
  11. stephenmbell

    Limit the characters in a multiline textbox

    I am writing an application that has a multiline textbox on a form. I am looking to make this textbox not be able to have any lines of text in it that are longer than 22 characters. The number of lines does not really matter. I turned off wordwrap and do now show any scroll bars - how would...
  12. stephenmbell

    CFMAIL Not Sending - Please Help

    I did as you suggested before removing the server attribute - i have not recieved anything. I removed the server attribute and go the following detail in the cfdump.. "Detail To send SMTP mail messages, ColdFusion requires that a default SMTP server be specified. You can set the default SMTP...
  13. stephenmbell

    CFMAIL Not Sending - Please Help

    I have a page that submits a form to an email address. The CF Version is 8.0 enterprise, and the site is not hosted in site, so there is no way for me to access the smtp server settings on the CF Administrator. That being said, here is my code: (I have tried both from attributes individually...
  14. stephenmbell

    help with div tags and *rounded corners*

    I think, for the purpose of flexibility, I would like to create a construct of DIV's to hold my images. That is the way I think about it with td's so it makse sense to me - I guess where I get confused is just understanding how to lay it out or nesting divs. Thanks.
  15. stephenmbell

    help with div tags and *rounded corners*

    It isnt really rounded corners.... I have an image - basiaclly just a white box with a drop shadow, that will eventually hold some text and images. I know how to do this with tables, but cannot seem to get it right with div tags. What I have done already is, slice the image up into 1 image...
  16. stephenmbell

    Windows Security Center - Disable After SP2 Install!??

    Here is my situation - because of some new regulations, I have to upgrade 600 PCs on a segment of my network to XP SP2 from Windows XP Pro SP1. These machines are on a different subnet, and not part of a domain. These machines are also behind a firewall and do not have internet access. I will...
  17. stephenmbell

    Confused by Timer.Interval Property...

    I am writing an application that will shell out to c:\windows\system32\shutdown.exe This application will start by scheduled task - 15 minutes before I actually want the machine to reboot. I have a timer on my form, with an interval of 90000 (which I believe is 15 minutes) The event does...
  18. stephenmbell

    Refreshing Imported Tables - VBA

    I am looking for a way to click a button on a form and have it refresh some imported tables - what would be the best way to do this? I have done some similiar work with ADOX - would this be the way to go? thanks in advance HTH sb
  19. stephenmbell

    Schtasks /Create - Can I set Run Until?

    I have a handful of scheduled tasks running on every windows xp machine in this segment of my network. From time to time we have to re-image these machines and re-set them up. One of the things we have to do when we re-image is run a bat file to create all of these scheduled tasks. Out of the...
  20. stephenmbell

    Copying a worksheet and pasting into new workbook

    Here it is.. 'declare local variables 'objects for working with the file system Dim objFSO As FileSystemObject Dim objFolder As Folder Dim objFile As File Dim appExcel As Excel.Application Dim wbkDistrict As Excel.Workbook Dim wksDistrict As Excel.Worksheet Dim wbkAll As Excel.Workbook Dim...

Part and Inventory Search

Back
Top