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 Chriss Miller 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: oharab
  • Content: Threads
  • Order by date
  1. oharab

    Aggregating Left Join in NHibernate using QueryOver/ICriteria

    I have two simple classes public class Blog { public Blog(){ Comments=new List<Comment>(); } public virtual Guid Id { get; set; } public virtual string Title { get; set; } public virtual string Text { get; set; } public virtual DateTime CreatedDate { get; set; }...
  2. oharab

    It's quiet in here...

    ... so I'm guessing I'm shouting to an empty room, but is anyone using Cadcorp products in here? I'm particularly interested in using the GeognoSIS API with OpenLayers. I know it can be done, but I'm not sure how! Any ideas? B. ---------------------------------------------- Ben O'Hara
  3. oharab

    VBScript Build Tool

    I've started a project to help modularize VBA and VBScript development and make it more SCM friendly. It's a build tool like Ant (or Nant, or MSBuild, etc) that is written in VBSCript. The basic idea is that the script takes an xml build file which contains the tasks required to either...
  4. oharab

    XML Deserialization in VB/VBA

    I have a set of VBA classes in an MS Access database. I have an xml string with data I want to create new classes with. Other than setting each property individually, is there an easy way to deserialize the XML into my object? I've seen the code using the TypeLib library Public Sub...
  5. oharab

    Checking For Compatibility Mode

    Does anyone know if it's possible to detect whether or not an Excel 2007 addin is running in Compatibility mode or not? I have an add-in that formats a worksheet using conditional formatting. Office 2007 has some nice formatting options that aren't available in compatibility mode, so I'd like...
  6. oharab

    Create new object from string

    Hi Sorry this is a cross post (thread707-1491214). Basically, I have a list of classes and I want to create a new object from a user selected variable Private downloadFile As ISQL Private Sub cboSelectList_Change() Set downloadFile = cboSelectList.Text* *Do something with this!!!! End Sub...
  7. oharab

    Create new object from VBComponent

    I have a set of class modules all implementing the same interface. Implements ISQL I have a form that lists all classes that implement the interface in a combobox. So far so good! What I want to do is create a new object based on what the user selects, but the closest I can get is the...
  8. oharab

    Konica Minolta 7145 Default Settings

    Hi, Is anyone aware of a way of changing the default settings for Konica printers, specifically the above model, though there are a few different Konicas around the organization. I'd like to be able to set duplex printing as the default, either in the driver (preferably via group policy or some...
  9. oharab

    Multiple &quot;Top 100&quot; datasets

    I have a table of data: tData: ID,Division,Some,Stuff,Here where ID is unique & the rest isn't. I also have a table of just tCriteria: Division where Division is Unique What I'd like is for each Division in tCriteria, return the top 100 rows from tData where...
  10. oharab

    Database Permissions

    Hi, First of all a little about my set up. Please don't laugh at it, it's not my fault, blame inter-office politics! I have a server on which I have full admin rights, running SQL Express. I develop using VS2003, but don't have Management Studio on my machine, so I can only create new databases...
  11. oharab

    Recommend a .NET Host?

    I'm after a UK host for my personal site (when I get chance to redevelop it!) and the sites of my clients. I want .NET 2.0 and SQL 2005. None of the sites are massive, either in traffic or size, at least not yet, anyway! Can anyone recommend an outfit that don't cost the earth, but aren't gonna...
  12. oharab

    Using External XML to decide loop

    I have an XML file that looks like Data.xml <z:row crime_no='XX/06/1264' date_ent='2006-02-02T00:00:00' ho_class='28/3' division='HD' beat='8' CrimeType_Code='4' /> <z:row crime_no='XX/06/1265' date_ent='2006-02-02T00:00:00'...
  13. oharab

    Floats floated of to god knows where

    Could someone take a look at this in IE5.5 please: http://robotparade.no-ip.com/lcd/index.htm It works fine in Firefox & Mozilla & is ok in ie6 too with a bit of hacking (it loads an extra stylesheet for IE) What do you see in IE5.5? All I want is the 3 images floating over the left hand...
  14. oharab

    Change Impromptu Catalog

    My predecessor built quite a few Impromptu reports using several Catalogs scattered across the file system. They all point to the same source (not sure why there are lots of copies) which has changed, along with the catalogs, rendering the old ones useless. Rather than copy the new catalog over...
  15. oharab

    Folder Permissions

    I am trying to set up a folder as a Virtual Folder but can't get the permissions right. The folder is on the local drive of the server (D:\Files\ePlans\intranet\). I can set up the virtual folder fine so that it works as it should in the browser. Problem is, the folder is also in our shared...
  16. oharab

    Friendly HTTP Error Messages: Not being very friendly.

    Ok, help me out here, before I do something I regret. I've just released a new version of my electronic form. It's a large system with several pages written in ASP, running from an Access database. It's hosted on an internal Win 2000 server, running IIS5. I'm getting users ringing up saying...
  17. oharab

    IIS Hanging

    I have a small Windows 2000 server running 4 or 5 small websites. Well they started small, but now people from all over the force are using them. 2 of the sites are electronic forms written in ASP that update MS Access databases. The problem is occasionally (twice yesterday, but a week before...
  18. oharab

    Accessing Active Directory

    I have a lovely little function that collects a user's email address from AD. It works just the way I want to in VBScript & VB & VBA. Public Function Email(LoginName As String) As Variant 'PURPOSE: Display Email Address that is available in 'the Active Directory about a given user...
  19. oharab

    overflow: hidden not hiding

    Could someone please take a look at http://robotparade.no-ip.com/localcaredirect_v7/index.htm the Scroller at the bottom is driving me mad. It works just lovely in Firefox, but in IE it doesn't seem to clip the text. I can see the text moving towards the div and out the other side. Any...
  20. oharab

    Expanding Contracting Header

    I'm trying to create an xhtml 1.0 compliant page where the header has 3 seperate images spread along it, aligned far left, middle and far right, which move as the browser is resized or with different resolutions. I want it to look like the header of http://www.beatcrime.info/ (please don't view...

Part and Inventory Search

Back
Top