Thanks for the reply. We're using the standard (not custom) implementation of forms asp.net membership for authentication and roles. We pass the username and password to the authentication service using the Login() method. Once "True" is returned from Login(), we call GetRolesForCurrentUser()...
We're using the Asp.net membership to handle user authentication and role manager. The application has been working fine for several months but recently there's a single pc that never returns the user role from the role service. The function is GetRolesForCurrentUser. The traffic in Fiddler...
I thought I was the only one trying to do this. My calling language is FoxPro rather than Clarion though. After searching the web for a couple days and finding nothing helpful, I decided to change my approach. Rather than using a .NET COM object I converted it to a .NET ActiveX windows...
Is there a way to have a project-wide exception handler in a C# ActiveX control I created? If there is, where does it go? In a windows application, I normally put:
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(OnUnhandledException);
in the Main() of...
We have a VB2005 desktop app using web services. The app/web service returns data within 4 seconds. The timeout is set to 2 minutes. There are random times when any query will timeout, which makes the user wait the full 2 minutes. we know if the data hasn't been returned in 10 seconds, the...
I'm using vb 2005. I have an assembly, called myAssembly, that references a 3rd party tool to handle compressing/uncompressing files. I added the reference of the dll to the assembly and added it to the Toolbox. Now Interop.Abalezip.dll and AxInterop.Abalezip.dll are referenced in MyAssembly...
I think you might be combining/confusing two data file formats. It's either tab delimited or it's fixed width, it can't be both (not that I've seen anyway) so you don't have to worry about how many spaces a tab is - just locate the tabs. Sounds like you already know how to do that or look at...
The split command usually works for me with delimited customer data.
Dim read As New IO.StreamReader("C:\test")
Dim strLine As String
Dim strData() As String
'loop to the end of the data file
Do While Not read.EndOfStream
'read a line of the data file
strLine = read.ReadLine...
I think this is what you're looking for:
Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNext.Click
Dim intIndex As Integer
intIndex = ListBox1.SelectedIndex
ListBox1.ClearSelected()
ListBox1.SelectedIndex =...
To get the install directory try the following (haven't tested this so I can't guarantee it'll work):
Go to the Custom Actions
Set the CustomActionData property of the vbs file to [TARGETDIR]
Change your vbs file to look like:
Set WshShell = CreateObject("WScript.Shell")
curDir =...
Maybe this will help. Sounds like you need to run command lines after the install is complete.
1) create a batch file with your commands, ie. the installUtil and NET Start commands - save as install.bat or any name you want. You might want to add "pause" (without quotes) to the end of your...
VB 2005
I'm deploying an app to another developer that has the same 3rd party tools installed on his pc as I do. When he installs this app it "breaks" his development environment by changing the registration path of all the ocx's to the app's folder I gave him rather than the path where the ocx...
Windows services are installed differently than windows apps. An installer is added to the project rather than creating a deploy/setup project. Here's the link that helped me get through the same problem:
http://www.developerfusion.co.uk/show/3441/3/
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.