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 bkrike 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: BKQc
  • Content: Threads
  • Order by date
  1. BKQc

    Query performance oddity

    I have a query on a junction table that looks like this: SELECT 1 FROM MyTable WHERE (k1 = :A1 OR k2 = :A2 OR k3 = :A3 OR k4 = :A4 OR k5 = :A5 OR k6 = :A6 OR k7 = :A7 OR k8 = :A8 OR k9 = :A9 OR k10 = :A10 OR k11 = :A11) AND ROWNUM <= 1 The role is to know if a given node is present anywhere...
  2. BKQc

    WinForm's ListView loses fore color

    I have a little VB.Net 4.0 WinForm app which contains a ListView. Depending on the content of one of the columns, I get the foreground color to change. The items are added live by a background process and the color set before adding to the list. The problem is that as soon as either a new...
  3. BKQc

    CurrentUserApplicationData and version changes

    Hi, I'm doing a WPF application that uses My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData to store a local xml database. When you use this function, the path returned uses formating String.Format("{0}\{1}\{2}\{3}", basePath, CompanyName, ProductName, ProductVersion)...
  4. BKQc

    WF not completing after returning ActivityExecutionStatus.Closed

    First of all, sorry to send this question all over the place but since I couldn't find a WF dedicated forum, I really don't know what is the best place to ask the question. So, the situation is that I built a WF using .NET Workflow Foundation in .NET 3.5 that is used to control the flow of a...
  5. BKQc

    WF not completing after returning ActivityExecutionStatus.Closed

    First of all, sorry to send this question all over the place but since I couldn't find a WF dedicated forum, I really don't know what is the best place to ask the question. So, the situation is that I built a WF using .NET Workflow Foundation in .NET 3.5 that is used to control the flow of a...
  6. BKQc

    LAPI being replaced

    Recently, I had some discussion with OT support staff (basically about the face that J# is to be phased out by MS) and I was a bit shocked to know that LAPI will be officially (Enterprise WebServices are still based on it) out of the business with the end of 9.7 maintenance cycle. Am I the only...
  7. BKQc

    Custom attribute question

    I'm trying to build a little "autonomous" object factory that is using reflection and attributes to know what are the available object types. Actually, the custom attribute looks like <ObjectFactory(13)> Where 13 is the object type id. So say in my DB I have an object for which I stored the...
  8. BKQc

    Cache/Headers problem

    I have a web page for which I want to implement if-modified-since algorithm to minimize server and network load but it seems I have a big problem getting the last-modified header to get sent to the client. Up to now, I've tried using response.cache.setLastModified([myDate]) and also...
  9. BKQc

    Code injection at compil time

    Anyone knows of a way to inject some code before the compiler does its job? My goal is to be able to add attributes to function parameters to generate testing code so a function like function MyFunction(<notNothing()>test as object) end function would become function MyFunction(test as...
  10. BKQc

    XML Comments / NDoc and external content

    I'm trying to build a complete help file using C# XML comments. Up to now, everything was going well until I got to point to an HTML file that is not directly related to any piece of code. I then looked at NDoc additional parameters and found one called "FilesToInclude". I tried setting my...
  11. BKQc

    Publisher Policy

    I built a shared assembly that is distributed in GAC and I had to do a patch to it. The old version was 1.5.0.5 and the new ons is 1.5.0.6. I followed the instructions here: http://samples.gotdotnet.com/quickstart/howto/doc/pubpolicy.aspx and successfully added the policy assembly to the GAC...
  12. BKQc

    Dynamic table and image cache

    I'm trying to build a table dynamically using JS for IE6.0 that contains images and text. In fact, every image referenced in the table has the same exact URL. The problem is that IE will do as many calls to the web server has there are images even though they all point to the same place. I...
  13. BKQc

    GDI+ (onpaint override) and autoscroll

    I'm trying to develop an application that draws a bar graph on a panel. Depending on the graph resolution, the graph have to be larger that the viewport so what I did is create usercontrol within my project, define the usercontrol autoscroll to true and then add a panel in it on which I draw my...
  14. BKQc

    XML Activator as Provider (XML File format)

    Anyone has used this functionnality? What I want to do is export infos from an Oracle DB to index in LL. I succeeded in getting some info in but the Metadata doesn'T seem to be interpreted well. Here is a sample file: <xml> <ID>Msg-1</ID> <Operation>AddOrReplace</Operation> <Content>Bonjour...
  15. BKQc

    Survey on search speed

    I would simply like to know what is the average search time you have at your place? Also, if you could mention What type of indexes you're using (Enterprise, Crawler, Spider, etc.) An estimation of how many object you have in it If the security is complex (or is it almost all public stuff) The...
  16. BKQc

    Builder and indexing

    I built a simple custom node in builder which is set to be a container (fContainer in the . Everything works as wanted except one thing: the documents (objects) within it are not index! What adds to the mystery is that I actually have 4 nested custom types (all indexed) and the only one which...
  17. BKQc

    Windows Integrated Security /w LAPI

    Anyone knows how and/or has used LAPI with a Single Sign on orientation? It doesn't seem to have anything in this direction but maybe I missed something. Thank you for your help!
  18. BKQc

    Dynamicly create an ActiveX (custom) control

    I'm trying to dynamicly create a form (using createForm) with a progressBar on it (using createControl as acCustomControl). These two function work well but the problem is that I can't set this OLE customControl to display my progress bar. I've set the .class property to...
  19. BKQc

    Using OpenAccessProject function in current ADP project

    My problem is that I want my button's onclick action to open a new Acces Project in the current Access Window. Actually, the code is working but I think it may creates some memory leaking problems. Call Shell(&quot;C:\Program Files\Microsoft Office\Office\MSACCESS.EXE C:\myDB.ADP&quot...
  20. BKQc

    Create a comma separated field value

    I'm trying to build a SQL request that would search say for all companies. Each companies have many products. I know I could do a join but then, I have to loop trying to find when I'm changing record and moreover, my application need a comma separated list to work. What I tried is : select...

Part and Inventory Search

Back
Top