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

    Role service

    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()...
  2. moabiker31

    Role service

    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...
  3. moabiker31

    Creating a Form from a Window Handle

    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...
  4. moabiker31

    ActiveX Exception Handling

    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...
  5. moabiker31

    timeout problem

    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...
  6. moabiker31

    strong name

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

    HELP with TAB problem!!!

    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...
  8. moabiker31

    HELP with TAB problem!!!

    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...
  9. moabiker31

    listbox item to textbox

    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 =...
  10. moabiker31

    Deploying a Windows Service

    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 =...
  11. moabiker31

    Deploying a Windows Service

    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...
  12. moabiker31

    Child Form Question

    Forgot something...remove the text from the Text property to remove the title bar.
  13. moabiker31

    Child Form Question

    If I understand correctly, setting the following properties will do it: FormBorderStyle = FixedToolWindow ControlBox = False
  14. moabiker31

    deployment with 3rd party tools

    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...
  15. moabiker31

    Deploying a Windows Service

    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/
  16. moabiker31

    missing listview images

    Solution: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=130282&SiteID=1 I guess this is a fairly common problem. Didn't find anything the first time I googled but after a few more searches I found one.
  17. moabiker31

    missing listview images

    VB.net 2005 Originally, Enable Application Framework was true and Enable XP visual styles was true; and the images were showing in the listviews. Then I realized I needed the ability to accept command line arguments so I set Enable Application Framework to false and added sub Main() to a...
  18. moabiker31

    datagridview: multiple types in one column

    also known as heterogeneous rows/columns http://searchsqlserver.techtarget.com/searchsqlserver/downloads/data_binding_proof.pdf see page 22
  19. moabiker31

    datagridview: multiple types in one column

    Is it possible to have the first row of a DataGridView be combo boxes, then every row after that a text box? I'm using VB 2005. Thanks. Jeff.
  20. moabiker31

    programatically move report fields

    Is there a way to programatically move report fields? Our vb.net 2005 application outputs labels. Some customers want firstname, lastname, addr1,... Some customers want lastname, firstname, addr1,... So I would like to be able to move them programatically and possibly hide certain fields if...

Part and Inventory Search

Back
Top