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. mpemberton

    Dynamically create pages in MultiPage control

    Ok, apparently I'm not 100% sure why this code works, but here's how I got it to work: MultiPage1.Pages.Add ("test") I left off the reference to the form and didn't fill in the additional arguments. I haven't performed any more testing to find the actual problem, but thought I'd at least...
  2. mpemberton

    Dynamically create pages in MultiPage control

    I know this must be easy, but I'm failing to get it to work. I simply want to dynamically add a new page in a multipage control. I thought it was as simple as this code: frmMyForm.MultiPage1.Pages.Add("Page 3","Page 3",2) However, it is stating it was looking for an "=". I attempted to...
  3. mpemberton

    WRTP54G DNS issues

    Using Earthlink Cable, had it for years, upgraded to Linksys WTRP54G router to use VoIP (previously have had netgear, older Linksys, etc routers). Upon configuration, took default settings, I configured my PC, my Linux box, and my wireless laptop. All seemed to work ok. IP ranges are...
  4. mpemberton

    Hosting Custom Forms Designer

    I've been doing research on creating my own custom forms designer and have been trying to compile all of my information. I figured I would share what I have with everyone. Many examples I have found were written in C#, and I've converted the good ones to VB.NET. One that has been a great...
  5. mpemberton

    APACHE - SLOW IMAGE DOWNLOAD

    If you're clients are running IE, that's probably where the problem is. As a test, load Firefox or another browser and see if that makes any difference. I too am seeing a slight lag when it comes to pulling down the images. I haven't pinpointed it, but the results using Firefox seems to be...
  6. mpemberton

    Caller ID from Tie Line

    Thanks John. I'm reviewing the prompts, and it looks very similar, except we're using a T1 rather than ISDN. Don't think that matters much on this specific issue. I see that you're RCLS is EXT. I thought from previous posts I read that I should change it to INT. But with your example as...
  7. mpemberton

    Caller ID from Tie Line

    We have a tie line going from Meridian to CiscoIP phones. Meridian to CiscoIP phones - Currently says External call (not so much worried about this right now) CiscoIP to Meridian phones - gives me the internal DN + channel (8908-2, 8908-3, etc) The tie line is RCLS=EXT, DGTP=DTI, DSEL=3VCE...
  8. mpemberton

    Swap TNs between two phones?

    Back to the original discussion. ArchTelecom, when you say ACD sets, do you mean ACD hunt groups? Sorry, my forte isn't PBX's, but we're about to move to another office and using the mov command will definitely help. We do have several hunt groups configured, and about half of the phones are...
  9. mpemberton

    FTP issue

    Try checking the status of the download, maybe it is attempting to disconnect during the transfer. Add a while loop to check the "MySite.IsPending" function. Maybe something like this (which I haven't tested): while CBool(MySite.IsPending) 'wait a second or something here wend...
  10. mpemberton

    ASP Authentication

    Check this link out. Took me a while to find one. I think it might give you an example that you're looking for. http://swforum.sun.com/jive/thread.jspa?forumID=13&threadID=8560 Should be like any other ldap call from ASP, didn't see anything unusual or different, but good luck.
  11. mpemberton

    using ASP to authenticate to iPlanet LDAP server

    I had to dig for this one, but this should give you an example. Sorry I couldn't provide one of my own code. http://swforum.sun.com/jive/thread.jspa?forumID=13&threadID=8560 If this doesn't help, look through the Sun forums and/or documentation. It's interesting that iPlanet has changed...
  12. mpemberton

    LDAP query referencing department field

    Many examples on the net. Here are a few: http://www.fawcette.com/archives/premier/mgznarch/vbpj/1999/12dec99/rj1299/rj1299.asp http://www.codeproject.com/asp/access_user_domain.asp http://www.microsoft.com/learning/books/itpro/feature/010803.asp...
  13. mpemberton

    User credentials with LDAP query in ASP?

    try something like this: objLdap = GetObject("LDAP:") objADSIuser = objLdap.OpenDSObject(strLDAPCommand, strAdminUser, strAdminPassword, ADS_AUTHENTICATION_ENUM.ADS_SECURE_AUTHENTICATION) Mark
  14. mpemberton

    ASP Authentication

    Check this link out. There is a bunch in there and may either answer your question or provide you with some other info that might get your issue resolved. http://www.tek-tips.com/viewthread.cfm?qid=356151&page=1
  15. mpemberton

    LDAP query referencing department field

    This is a long shot but figured it is worth mentioning. Are you getting the error on the query or when you are attempting to display the department field? The reason I ask is if the department is null, you may be erroring out because of that. The best test for this is to refine your query to...
  16. mpemberton

    Authenticate using a web form?

    You'll need to use LDAP calls to authenticate. Here are some sniplets to get you started. Public Function Authenticate() As Boolean If strLogin = "" Or strPassword = "" Then Return False Try Dim con As Object = GetObject("LDAP:") Dim qryStr As String = "uid=" & strLogin &...
  17. mpemberton

    RichTextBox Formatting as text is added

    I'm having a tough time adding formatting codes as I add text to the richtextbox. This is a simplified document conversion program where I'm reading in a document that has text that is marked as bold. I read in character by character adding to the richtextbox with rtb.text += newtext. Once I...
  18. mpemberton

    Changing Directory Security

    I've fought this one for too long and I'm asking for some help. I have created a directory on the w2k server and want to set the permissions to be specific as follows: 1. Set the directory to not allow inheritable permissions from the parent directory to propagate to the new directory. 2. Set...
  19. mpemberton

    running dll's under .net

    Aaron, John's response is accurate, but I'll elaborate on it if I can. Yes, you can create a DLL to use in an ASP.NET script using codebehind. Not sure of your experience with any of the Microsoft's programming tools (Visual Basic, Visual whatever), but with Visual Studio.NET, you can...
  20. mpemberton

    ASP.NET and JavaScript

    Additionally, I have found it useful for certain needs to embed a javascript call in the codebehind. There are limits and probably isn't recommended by most (and probably isn't supported by all browsers), but you could do something like this. Let's say that you have a popup window that you...

Part and Inventory Search

Back
Top