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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by abdullauthan

  1. abdullauthan

    Deploying Application without DLLs

    I have developed a small Utility which sends remider e-mail to users. This application will be copied to a shared folder on the server and executed from there. What is the best way to build it and deploy on the server without doing any setup on the users' workstations? This application uses...
  2. abdullauthan

    Public Connection

    I declared a connection as Public in a module and it always gives me an error when I pass the connectstring from the login page. When I declare the connection with Dim within the button_click event, it works fine. I'm new to ASP.Net and I'm declaring the connection Public because I hope I can...
  3. abdullauthan

    Windows Logged In User Name

    It is checked!
  4. abdullauthan

    Windows Logged In User Name

    Still the same error!!! [ApplicationException: Access is denied. ] System.Security.Principal.WindowsIdentity._ResolveIdentity(IntPtr userToken) +0 System.Security.Principal.WindowsIdentity.get_Name() +71 System.Web.Configuration.AuthorizationConfigRule.IsUserAllowed(IPrincipal user...
  5. abdullauthan

    Windows Logged In User Name

    I was trying to log in using windows integrated security and could not. crazyboybert, could you please let me know step-by-step procedure to login with windows integrated security?
  6. abdullauthan

    SQL Server with Windows Integrated Security

    I'm trying to connect to SQL Server using windows integrated security. I have made the changes as per the below link. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbtskaccessingsqlserverusingwindowsintegratedsecurity.asp I'm getting this error... Access is...
  7. abdullauthan

    I have a problem with Visual Basic

    I tried and got the following error. 'Transaction cannot start because more than one ODBC connection is in use' I use only one connection and that is cnJSA which uses the Domain Account to access SQL Server using Windows Authentication.
  8. abdullauthan

    I have a problem with Visual Basic

    I have a problem with Visual Basic Statements while updating multiple tables in SQL Server 7 For Ex: when I issue the below statements, cnJSA.Execute "Begin Transaction LockRecord" UpdateStatus = True cmJSA.CommandText = "sp_JSA_LockJSA&quot...
  9. abdullauthan

    XP Style controls

    How can I make use of XP Style controls in VB? Is there any controls available from Microsoft for this?
  10. abdullauthan

    rs.field question

    make it... record = "" & rs.Fields("dbCampo")
  11. abdullauthan

    Customized Alert Window

    I made an Alert window of my own and the problem is, If I open the Alert form from a function, the remaining code after the form.show method is execute before closing the form. This way I cannot return the result from the function or from the form to the calling procedure. Is there any way...
  12. abdullauthan

    BorderStyle is changed

    I have a form with BorderStyle = 3-Fixed Dialog and Appearence = 0-Flat. When I resize the form at Run Time, the appearance of the Form is changed to a 3-d like look. When I don't resize the Form at Run Time, the appearance is okay. Any help on this?
  13. abdullauthan

    Dynamic Query not returning RecordCount

    I am using a Stored Procedure with Dynamic SQL Statements in SQL Server. If try to retrieve records using the Stored Procedure in VB (ADO Command & Recordset combination), there are no records retrieved. However if I extract the result to a MSHFlexGrid (Set MSHFlexGrid1.DataSource=rstTest) I...
  14. abdullauthan

    Dynamic Query not returning RecordCount

    I am using a Stored Procedure with Dynamic SQL Statements in SQL Server. If try to retrieve records using the Stored Procedure in VB (ADO Command & Recordset combination), there are no records retrieved. However if I extract the result to a MSHFlexGrid (Set MSHFlexGrid1.DataSource=rstTest) I...
  15. abdullauthan

    Dynamic Query Not Returning RecordCount

    I am using a Stored Procedure with Dynamic SQL Statements in SQL Server. If try to retrieve records using the Stored Procedure in VB (ADO Command & Recordset combination), there are no records retrieved. However if I extract the result to a MSHFlexGrid (Set MSHFlexGrid1.DataSource=rstTest) I...

Part and Inventory Search

Back
Top