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!

Search results for query: *

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

    Cannot access SYS on a fresh install of Netware.4.11 - kinda Urgent

    Hello, I have had this Netware 4.11 server going since around 1997. I have never had any problems with it and any of the various Windows that have come along since then. The problem started when I, like a stupid idiot, accidentally deleted the C:\NWSERVER directory. After that I had no...
  2. other3

    JavaScript ASP on IIS 5.1 vs W2K IIS

    I developed what I would consider a sizeable application on W2K and the IIS version that went with it. This app. has 15-20 .asp object files. It still runs fine on IIS 5.1 or whatever goes with XP Pro. I have been trying to develop a new, much smaller app. and am now starting to work up my...
  3. other3

    It used to work now I get a 0x80004005

    I had this website running yesterday and for many days before on the laptop I'm using to write this message. Yesterday I was using the setting to try and figure out the problems on a desktop machine and in the process screwed up the laptop. The laptop is running Win2000 IIS 5.0 It's an ADO...
  4. other3

    Have not toyed around with Java since 05. Need help with classpath

    The Java executable is in C:\Java\jdk1.5.0_02\bin\java. The main class is in C:\MyProjects\myprogram\myprogram. I want to set it up using -classpath. Any assistance would be appreciated. I'm using JCreator and it runs fine from within the IDE. Everything I know I learned from The Grateful...
  5. other3

    Data Adapter says I don't have perms to create Stored Procedure

    This is in a database that is local to my own machine. Everything I know I learned from The Grateful Dead and Buffy The Vampire Slayer Charlie
  6. other3

    MDI Child creation question?

    In VB.NET I have the following code. " If Not m_bCDSform Then m_cdsForm = New cdsForm m_cdsForm.MdiParent = Me m_cdsForm.Show() Else m_cdsForm.BringToFront() End If Public Sub setCDsForm(ByVal bOpen As Boolean) m_bCDSform = bOpen End Sub " When the m_cdsForm loads it does the...
  7. other3

    SELECT COUNT(*) ?

    I'm using this command where I know there is one Artist. Even in cases of multiple occurances of the Artist in the Songs table. cmdCount.CommandText = "SELECT COUNT(*) FROM Songs " _ & "WHERE Artist = @strArtist" When I execute the following iArtistCount =...
  8. other3

    MDI Child Close ?

    The following code was done in VB.NET 2003. I have a MDI application that I can open any number of dialog type boxes and this will close the one that is in the foreground no matter what type of form it is. This only requires a menu on the parent form. Private Sub fileClose_Click(ByVal sender...
  9. other3

    Shopping Cart & Back Button

    I have been working on a page that checks a Date time set in ViewState and in a Session State. The Page_Load calles a routine that checks these times to determine if the page is expired. In debug mode when I click the browers IE 6's back button, the break in the Page_Load sub is not even hit...
  10. other3

    SSL Project Question?

    I did a test project that required an SSL awhile back. Now, months later I can't get into it because of the change from http to https. Any help would be appreciated Thanks in advance. Everything I know I learned from The Grateful Dead and Buffy The Vampire Slayer Charlie
  11. other3

    Gridbag Layout?

    I am using one dialog for input and display. I want to make buttons visable or invisable based on whether or not I'm doing input or display. The panel the buttons are placed in/on is part of the whole dialogs Gridbag layout. Anyway, when I make buttons I don't want to see invisable the ones I...
  12. other3

    DataGrid Edit, Update, Canel..worked and now they don't?

    It's really weird, I tried removing them all together and then reappling them and they still do not work. Has anyone else ever seen this kind of behavior and if so what is the solution? Everything I know I learned from The Grateful Dead and Buffy The Vampire Slayer Charlie
  13. other3

    Page using C#, All Valdtrs excpt Custom will trigger MessageBox, why?

    I developed a page that uses every type of validator and has a ValidationSummary that shows a MessageBox. Unlike most of the code I've seen I used the IDE to develop the page. All of the validators, including the Custom one will show their error messages on the page when the post link is...
  14. other3

    Need a book on ASP.NET/C#.NET that gives using the IDE examples?

    Can anyone recommend one? Having a real problem with a custom validator. Everything I know I learned from The Grateful Dead and Buffy The Vampire Slayer Charlie
  15. other3

    Problem finding /WebUIValidation.js

    Am getting the following error when trying to use a custom validator in C#.NET. I've never had problems with custom validators in VB.NET "Unable to find script library '/aspnet_client/system_web/1_1_4322/WebUIValidation.js' It's there and it's version 125. I've also tried coping the whole...
  16. other3

    Custom Validator neebee?

    I can't seem to get the code to run the validator routine. Here's what I have protected System.Web.UI.WebControls.CustomValidator CustomValidator1; In the HTML <asp:CustomValidator id="CustomValidator1" runat="server" ErrorMessage="Must Be Gold Or Platinum"...
  17. other3

    ASP.NET/VB.NET On IIS Access denied?

    I'm a newbee trying to use a Web Service that I developed as a separate project in another project and am getting the following: The request failed with HTTP status 401: Access Denied. Source File: D:\Inetpub\wwwroot\ASP.NET_Chap16_1\Web References\localhost\Reference.vb Line: 60 Line...
  18. other3

    Trying to find a good book on ASP.NET/C#

    I'm trying to find a really good book that deals pretty much specifically with using C# to do ASP.NET. I have the Murach's "C#" book, but that deals pretty much with stand alone Windows programming. I'm looking for something along the line of Murach's "ASP.NET web programming with VB.NET"...
  19. other3

    C# newbee 'System.Data.SqlClient.SqlException'

    public ArrayList GetProducts() { ArrayList alProducts = new ArrayList(); string strSelect = "SELECT ProductCode, Description, " + "UnitPrice FROM Products"; SqlConnection theSqlConnection = Connection(); SqlCommand theSqlCommand = new SqlCommand(strSelect...
  20. other3

    This works in IIS on desktop Win2k and PWS Win98 but not on Win2k lt

    This portion of Javascript ASP works fine on my desktop installation of IIS in Win2k and PWS in desktop Win98 but not on my laptop Win2k or desktop IIS in WinXP. Any thoughts? objConn = Server.CreateObject("ADODB.Connection"); objConn.ConnectionString = "DSN=pb"; objConn.Open(); // this is...

Part and Inventory Search

Back
Top