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 gkittelson 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. protechdm

    Creating a connection to an FTP location

    Hi, Is it possible to return a datatable from an FTP location in .Net like this:? objSessionDataManager.DataPath = @"ftp://user:password@213.171.193.5/saabshack.co.uk/htdocs/data/catalogue.mdb"; Seems to work through Explorer & MS Access but not through a .net implementation. Many thanks, Glyn.
  2. protechdm

    Scripting issue

    It's the real code. Basically, why won't test() fire at all? I've heard of incompatibilities in browsers etc. and ran some tests through webreference.com but am totally confused by it now.
  3. protechdm

    Scripting issue

    Good evening, Can anyone be so kind as to cast an eye over this code. Having problems getting a combo to populate itself on load so I've had to take it right back to basics i.e. the test function. When the page is loaded no values have been inserted into the combo. Same if I use the RSEXECUTE...
  4. protechdm

    ASP script calling .NET assembly

    Here's the rub:- I have authored a database/content managed web site completely written in C# & ASP.NET that uses MS Access for data store. The web host does not allow third party COM registration. There is an online payment facility that has to be HTTPS. Only ASP & script is allowed inside...
  5. protechdm

    Type Conversion query

    Hi, I have 2 classes, say B & C which are both inherited from the same class, A. Class A has a property which is used to hold a reference to a subclassed form. Class A also has a method that dynamically loads classes in the following way:- object objC; objC =...
  6. protechdm

    BinaryFormatter Version incompatibility

    Hi, Getting the error message:- Additional information: BinaryFormatter Version incompatibility. Expected Version 1.0. Received Version 335546368.-16770048. From the code below, in the PictureFormat method - which is the delegate for the Format property of the image - the error occurs when...
  7. protechdm

    An error occurred whilst loading the document.

    Hi, I have a solution which unfortunately contains 12 projects - all of which have dependencies on each other in some shape or form. Ever since using .NET, I've experienced nothing but the above error message. I've checked all the dependencies and cannot fathom it out. I also get warnings...
  8. protechdm

    user control postback not firing

    Hi, I have a radiobuttonlist, dynamically created, which implements postback. If I place this directly onto a page it works great. But, if I place it onto a user control page and then place this user control onto a page the postback does not fire. It appears I am not setting the ID's...
  9. protechdm

    Render & CreateChildControls issue

    Hi, I have a custom server control - a radio button list. It was written a while ago before we went down the composite control route and constructs itself through the Render method. I now want to add a validation control to it. So, proceeded to do this from the CreateChildControls method. The...
  10. protechdm

    Session Object

    Hi, Kind of stuck between a rock and a hard place on this. I have 3 pages - all of which ask for user input through various text/radio/picklist controls. On post back, these entries are to be written to the relevant fields in the new row of a table. I was thinking of storing a...
  11. protechdm

    QAS ( QuickAddress )

    Hi, Has anyone used this in .NET? In particular the QARAPID API? In the process of migrating some FoxPro code - the code works fine in Fox 2.6 and VFP 5 but for some reason is giving problems in .NET, particularly System.EngineExecutionEngineException. I've scanned the forums but it is not in...
  12. protechdm

    Sendmail issue with W2K workgroup network

    My knowledge on DNS etc. is very sketchy so apologies in advance..... I have a PC which has ADSL and another - let's suppose it is called MAINBOX - which obtains an IP address automatically for an Internet connection. MAINBOX uses Outlook Express to grab E-Mail and has Norton Anti-Virus...
  13. protechdm

    Postback and child controls

    Thanks guys. I'm building as much as I can server side and - please correct me if I'm wrong:- When using the Controls.Add(mycontrol) you use the addhandler - in this case .textchanged - when overriding the CreateChildControls method. I did read somewhere that the postback does fire for all...
  14. protechdm

    Postback and child controls

    Hi, Essentially I create a textbox dynamically and assign it a custom validator as shown below:- Protected Overrides Sub CreateChildControls() myTextBox.ID = UniqueID Controls.Add(myTextBox) MyID = myTextBox.ID myValidator.ErrorMessage =...
  15. protechdm

    I am trying to create a custom radi

    I am trying to create a custom radiobuttonlist. The problem is that I cannot seem to fire the "LoadPostData" method which needs to update the datatable with the selectedindex value. It works fine when a class is defined as a WebControl, the textbox class I have written calls postback...
  16. protechdm

    Yet another data source gripe!!

    Hi, Platform .NET / Access 2000 / Win2000 / CR version whatever-was-in-the-latest-.net-service-pack. Basically I have one report that suits 2 different tables ( same structure ) in an Access database. So, I added 1 of the tables - GROSSWP - to the report purely for design purposes. It was...
  17. protechdm

    IE as a Windows Service???

    No definitely has access - even wrote the HTML to the event viewer just to make sure! I've scoured the net and even downloaded some code from Microsoft ( which didn't work ). I know in the days of VB6 you could use the MSHTML and API call to print the document but there doesn't seem to be a...
  18. protechdm

    IE as a Windows Service???

    Hi, Heres the plan :- Transform some XML via XSLT and save the resulting HTML to a file in a certain folder. Write a printing service that wraps a FileSystemWatcher monitoring the above folder for new HTML files. Print the newly created HTML file. If I run the code - contained in the sub...
  19. protechdm

    Creating an empty date textbox

    This is baffling me!! I have created the following class :- Public Class DateTextBox Inherits System.Windows.Forms.TextBox Private strTempText As String = &quot; / / &quot; Public Sub New() MyBase.New() End Sub <DefaultValue(&quot; / / &quot;)> Public...
  20. protechdm

    Using the Find method in a dataset,

    What I have essentially done is created a &quot;TopMost&quot; search form ( standard MS find & replace ) that allows an input of text. When the search button is pressed a delegated method in the calling form is called and uses the dataset &quot;Find&quot; method to locate the text in the...

Part and Inventory Search

Back
Top