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...
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...
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...
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...
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...
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...
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...
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...
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...
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.
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...
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...
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
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...
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 &...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.