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

    Telnet port 25 remotely but not on Localhost

    I am running MailEnable and am trying to connect to telnet port 25 from the server itself, however it is unable to connect. I am able to connect to the server via port 25 from a client. I disabled MailEnable's SMTP (since I thought it may be the problem) and enabled the IIS SMTP, but same...
  2. Trevahaha

    w32time - not able to start (urgent)

    I've noticed that two domain controllers are unable to synchronize and I think it's because one of the servers is unable to start the Windows Time Service. None of the accounts are able to synchronize! When I type: net start w32time I get back: System error 2 has occurred. The system cannot...
  3. Trevahaha

    System.Byte[] instead of String (SOAP)

    I have a web service that is connects to a mySQL database, pulls a large text field and returns it to the client. Example: string sql = "SELECT Essay FROM essay WHERE ((EssayID)='1234');"; MySQLCommand cmd = new MySQLCommand(sql, conn); MySQLDataReader reader = cmd.ExecuteReaderEx()...
  4. Trevahaha

    SOAP, PHP and IIS

    I've enabled SOAP for PHP and have successfully used the client side of PHP SOAP. I'm trying to get basic "stockquote server" example to work. When I try to do make a SOAP server I get the following error: The specified CGI application misbehaved by not returning a complete set of HTTP...
  5. Trevahaha

    More Efficient - Calculated Column reuse?

    So I have a php page(hence the $ variables) that given some zipcode and distance will return all zip codes within the given miles sorted by distance. I want to be able to use column "DIST" SELECT zip, latitude, longitude...
  6. Trevahaha

    ListBox - Multicolumn

    How do I setup a listbox to show multiple columns WITH a dataset?? I can't find it anywhere.. only references on how to populate (Add) columns, i.e. non-dataset. Trevor
  7. Trevahaha

    HTML Formatting Applet/ActiveX/????

    I have a webpage where people can upload new articles and sometimes in the content there needs to be formatting of BOLD or ITALICS. Many people are copying and pasting this from MS-WORD. Anyone know of an applet or maybe ActiveX control or anything that allows someone to either (1) Type into...
  8. Trevahaha

    Permanent Deleting for file - roaming profiles

    I have many instances where a user is trying to delete a file on their network drive, but when logging out, the computer then copies the local cached file to the network drive (synchronizing) and upon next logon, the file is back. How can I prevent this from occuring? Trevor
  9. Trevahaha

    Logon Script - wscript

    Is there a way to change what is displayed in the logon box? I've seen this on some networks where instead of just saying "Applying your personal settings..." It actually displays what it is doing. Trevor
  10. Trevahaha

    Variable of Field Name

    I'd like to do a loop to analyze a bunch of fields Q1 -> Q32 and to build a string accordiningly. How can I reference a field by using a variable? Something like: Dim fieldname as string dim i i = 0 Do While (i <= 32) fieldname = &quot;Q&quot; & i if ([fieldname].value == TRUE) then...
  11. Trevahaha

    FileDialog - Access XP - not working

    I have the following code -- it gives an error and debugs on the &quot;Set dlgSave = Applica...&quot; with a runtime error of 445 &quot;Object doesn't support this action&quot; Help says to set it like this: Set dlgSaveAs = Application.FileDialog( _ FileDialogType:=msoFileDialogSaveAs) But...
  12. Trevahaha

    Exporting a Query

    Anyone know where I can find some code that would allow me to export a query to a text file? I want to allow the users to take the data from the database and use it for a mailmerge. I couldn't find any examples in my VBA books. Thanks! Trevor
  13. Trevahaha

    to use QueryDefs or not? Combine to one query

    I want a listbox to display all the available user types a user can be, i.e. display all user types that they haven't already been selected I have two tables for this: tlkpUsrType - lookup of all user types (usrTypeID;usrTypeDesc;usrTypeCat) tblUsrType - links a usrID to a user type...
  14. Trevahaha

    Search Crashing

    I was noticing that I have search dialogs throughout a database and if someone enters single-quote mark, ' , it crashes the code. Is there a way to maintain the search ability but prevent crashing? I think it involves split and replacing ' with \' .. but are there other things I should be...
  15. Trevahaha

    Wrong thought process - better way? (subforms, listbox)

    So I have a form that has pages on it. This form is user form. One of the pages is a contact log. The contact log page has a listbox that has the history of contact and a subform of the contact details (single record) and a button to add a new entry. When you click on the item in the list...
  16. Trevahaha

    subform change from listbox

    I have a form that has a list box and a subform. This list box contains all the contact history in brief form, when double clicked, I would like the subform to change to the record selected. I tried this: lstContactHistory_DblClick() sfrmContactLog.LinkMasterFields = lstContactHistory.value...
  17. Trevahaha

    Parsing a name field

    I'm attempting to replicate Microsoft Outlooks way of allowing a name to be entered in the contact area. I would like to take an unbound field and have it broken into parts using some logic I'll build. I've very unfamilar with the left$ right$ Iif statements. It would be something like this...
  18. Trevahaha

    Why won't my mouseOver work?

    I have the following code that always worked on my previous sites, but not on this one. All I want is for the the links in this menu to change color. <code> <a href=&quot;URL&quot; class=&quot;menuoff&quot; onMouseOver=&quot;this.ClassName='menuon';&quot...
  19. Trevahaha

    Section Footer - Size limitation

    Anyone know a way around the limitation on a section footer? Right now I'm working around by having two sub reports run within this section as sloppy work around. I'm doing charts of summarizing data so they take up lots of room. Also - anyone know of a place of good reference of this type of...
  20. Trevahaha

    XP - Not applying group policy

    I just installed a new XP machine yesterday and it seems to refuse to download the group policy from the server. All the other machines have been doing this just fine (even other XP). I even ran the GPUpdate with all different commands -- still no luck. Is it possible that the XP machine...

Part and Inventory Search

Back
Top