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 Wanet Telecoms Ltd 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: *

  • Users: dg043
  • Content: Threads
  • Order by date
  1. dg043

    Automatic proxy authentication

    Hi, I am trying to write a program that will open a web page in Internet Explorer and save the result. I am having a problem with my proxy server though. If I wasn't using a proxy, the code would be: Dim wbBrowser as New SHDocVw.InternetExplorer wbBrowser.Visible = True wbBrowser.Navigate...
  2. dg043

    Receiving SMTP messages

    Hi, I've read a lot all over the internet about how it is possible to send emails using SMTP. However, I would like to know if anybody knows how to RECEIVE emails using SMTP. Basically, I have an email adrress on an SMTP server and I want to know if I can check it using VB .NET 2003? Dan...
  3. dg043

    Cannot delete publication

    I have a problem with publications on a SQL Server 2000. I have a database called DTAD and this contains a publication of the same name. This is an old process and I no longer require it. However, when I try to delete it SQL Enterprise Manager freezes and remains in a 'Not Responding' state...
  4. dg043

    File DSN problem

    Hi, I don't know whether this is the right forum to post in, but I am having trouble with a file DSN. I have a shared Access database located on a server. It uses a DSN file in the same directory on that server, that points to a SQL Server database. This setup works fine until 2 people try to...
  5. dg043

    Registry permissions denied

    I am experiencing the same problem as described in thread796-1042121. I can run the program (a windows forms application which simply changes a registry value) through the Visual Studio IDE but as soon as I try and just execute the program (by running the .exe file through Windows explorer), it...
  6. dg043

    Form is closing automatically

    I have a simple Windows Forms based application which I am trying to upgrade from Visual Basic 6.0 to Visual Basic .NET. At the moment, all I am trying to do is open a form from a module. That is, I have a form called frmProgress and a module called modBas. In modBas is the following code...
  7. dg043

    Webclass Start not operating correctly

    I have a Windows 2000 Server on which I am running IIS v5.1. I have created a WebClass project using Visual Basic 6.0 and can run this project without any problem through this development environment. My problem occurs when I deploy this project to run using IIS only. The project contains an...
  8. dg043

    Cannot see functions in the webclass

    I am currently working on a web application that is to be ran through IIS. The webclass on the server is called wclsHelpDesk.dsr and in the login web event, it uses a method in a class called c_SQLCon.cls. My plan was to have that class call a method back in the webclass , to output some...
  9. dg043

    Recovering a database from a .DAT file

    I had an installation of SQL Server 6.5 which maintained several databases. The server running this crashed and all I have left is the .DAT files which represent the data and log devices for each database. I have read that it is pssible to restore databases created in SQL Server 7.0 or above...
  10. dg043

    What does the Automatic mean after the preferred network name?

    The standard in my company is to have a HP laptop running XP Pro with internal wireless capability. Most of these laptops can connect wirelessly to our nework whenever in range, with no problem. I have one laptop though where the only difference that I can see is that the network name listed in...
  11. dg043

    Network permission differences

    In the office where I work there are 3 computers which are networked on the same workgroup and all run XP SP2. When I use another PC to try and connect to the first PC (using Windows Explorer), I am allowed to view files correctly without any restriction. When I try to connect to the second PC...
  12. dg043

    Unknown ASP error

    I have Internet Information Services 5.1 running on a Windows XP Service Pack 2 platform. I am developing an ASP application on another machine (which I believe is identical [IIS v5.1, WXP SP 2, etc]) using Visual Basic 6.0. When I have deployed the project using the included Package &...
  13. dg043

    Winsock string length

    I am using a Winsock control to convert a user-defined type into a byte array and send it over TCP to a remote host where it is reassembled back into the user_defined type. The server code is: Private Sub winComms_DataArrival(Index As Integer, ByVal bytesTotal As Long) Dim...
  14. dg043

    One-way winsock communicztion

    I have a simple client/server model running between two machines; one is running Windows XP Professional and one is running Windows 2000. When I send a connection request (using the winsock control) from the XP machine to the 2000 machine, everything works fine. However, when I try to send a...
  15. dg043

    Using VBSQL.OCX to control SQL Server

    I am writing a program to batch copy data from an operating system file into a table in SQL Server 6.5. I have discovered an ActiveX control in the SQL Server programmer's toolkit called VBSQL.OCX which provides several methods to allow me to do this. Here is my code so far: Dim login_id As...
  16. dg043

    Scheduled Task Permissions

    I maintain a server running SQL Server 6.5 and this SQL Server has several scheduled tasks. I have arranged each database on the server so that there is a user called 'standby' who is aliased to 'dbo'. I have then created a scheduled task (as this user) to backup the relevant database to tape...
  17. dg043

    Deploying a Web Service

    I suspect I know what the answer is to this question but, I have an ASP.NET Web Service and corresponding Web Application that has been created using Visual Studio .NET. I want to deploy these two projects to another machine. The machine that I would LIKE to deploy to is running Windows NT 4.0...
  18. dg043

    Web server variable access from client

    I am trying to store a variable in a Web Service class created with ASP.NET. The variable is declared as global to the web service class and it has an accesssor method. I want to set this variable in a method of the web service and then return it when the accessor method is called. The code that...
  19. dg043

    DataGrid Row Heights are different

    I have two ASP.NET pages, both of which contain one datagrid. The height of each row in BOTH datagrids is set to 16px. However, the first datagrid displays each row at apparently a much bigger height than in the second datagrid. Both datagrids only contain text in each of their rows so why is...
  20. dg043

    ViewState problem

    I am trying to create an application that presents a button (which I shal call cmdA) in a frame in a browser. There is another frame below this which contains another button (which I shall call cmdB). On click of cmdB, I want to make cmdA invisible. This seems like it should be a fairly easy...

Part and Inventory Search

Back
Top