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 TouchToneTommy 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. BuilderSpec

    LDAP with AD/LDS

    Hi I have some C# code that connects to an AD / LDS store. I can use Directory Search successfully to find and add members. The issue I am having is that I cannot authenticate a user name and password successfully. I have followed various internet suggestions and come up with the following...
  2. BuilderSpec

    ActiveX or no ActiveX?

    Hi I am currently working on a project conversion from lotus notes html server to asp/asp.net. Part of the original setup involves an ActiveX that is written in VB to handle label formatting and printing. I have seen ASP.NET code that can handle drawing on canvasses now etc. My question is ...
  3. BuilderSpec

    how to extract a view from dynamic pivot

    Hi all i have the following code that creates a pivot table result. declare @cols VARCHAR(MAX); declare @qry varchar(max); set @cols = 'North,South' select @cols = STUFF((SELECT distinct(',' + QUOTENAME(convert(char(10),bookingdate,121))) from pickwalk where...
  4. BuilderSpec

    Post issue with NMHTTP

    Hi I am using the supplied example with Borland 6 called HTTPDEMO is order to prove a concept I am trying to do, simply post data to a website I have an ASP web page which simply shows the data that has been posted called posttest.asp. in it I have code that says <%=request.form%> to display...
  5. BuilderSpec

    NMPOP3 Attachment issue

    Hi I have used the NMPOP3 to process e-mails and attachments. Until recently attachments have been "behaving" themselves but for some reason I have e-mails that are Excel spreadsheets that the NMPOP3 now calls the attachment text.tmp instead of the full name. The directory that the attachments...
  6. BuilderSpec

    cpp browser border issue

    Hi I am using a CppWebbrowser component and I have noticed that when it displays the control and the page within it shows a small grey border across the top and down the left hand side. I want to put my control align to the client but I still get this border. I thought it might be removed if I...
  7. BuilderSpec

    Quick one about compiling source files

    Hi Is there a way that I can "make" a project as oppose to "build" but make it so that a particular source file is ALWAYS recompiled ? Hope this helps! Regards BuilderSpec
  8. BuilderSpec

    need help with ExecProc call to WMI

    Hi I am using C+ Builder 6 . I am trying to get the username of a running process. I have my code below , essentially a Form , a timer and 2 buttons then this code you see below. I have got as far as getting the process , Google says I need to call GetOwner method from the class Win32_Process...
  9. BuilderSpec

    ListView SubItem Selection

    Hi I have a listview that has 3 columns : date , trainer 1 and trainer 2. The grid is populated with a date always in the caption and then maybe some text in trainer 1 or trainer 2 sub item fields. Suppose I have a grid that looks like : Date Trainer 1 Trainer 2 05/08/2013 Lee...
  10. BuilderSpec

    Issue with CreateObject

    Hi I am trying to create an object to an instance of hostex32.exe running on a machine. I use code that says : HE = createobject("HostExplorer") Which works. Funnily enough GetObject does not work , createobject in this instance seems to attach to the existing process as opposed to creating a...
  11. BuilderSpec

    Web Application and QuickReport

    Hi I am using C++ Builder 6 and looking to create a Web DLL which I can get working fine using the PageProducers etc. I want to be able to produce a proper report from my DLL using QuickReport. is this possible ? I tried it initially and the DLL just crashes so I am getting the feeling that I...
  12. BuilderSpec

    Can't update Access form without making it unusable

    Hi Unusual subject I know I struggled how to put this into 10 succinct words. Not sure if anyone can reproduce this error but here goes... I have a large Access database that has been in use commercially for years so you can imagine the use it has had. It has many many forms and somne of these...
  13. BuilderSpec

    NMFTP Issue

    Hi I am writing an app that archives files from one box to another. It connects using the NMFTP1 component and I retrieve a listing. The issue is that the listing never completes. I use the ListItem method and can get all the directory info but the call gets stuck in NMFTP->List(). I have set a...
  14. BuilderSpec

    is pure tcp/ip connection to SQL Server available ?

    Hi gmmastros You are right , i did mention this in my original post. The question more was whether I could do this directly. Thanks Hope this helps! Regards BuilderSpec
  15. BuilderSpec

    Access / SQL Server locking procedure

    Hi If you suspect that the conflict of locking won't be common... Don't write any code to perform application level locking , instead where the code performs the update to the record simply trap the error. If the error implies the record is locked elsewhere just put out a message to the user...
  16. BuilderSpec

    is pure tcp/ip connection to SQL Server available ?

    TheBugSlayer Thanks for your post. Had a quick look but the CLR stuff still requires some libraries etc to be installed on client system I am guessing. I am not in a position to install anything , and not due to security more due to the operating system being so old. I am a very good socket...
  17. BuilderSpec

    is pure tcp/ip connection to SQL Server available ?

    Hi I am wondering if it is possible to connect to an instance of SQL Server and query/amend/insert data purely by using TCP/IP socket code ? The client would be an old OpenVMS system so no SQL tools can be loaded etc it has to be pure socket code. I know SQL Server can communicate over sockets...
  18. BuilderSpec

    How to call a public function

    Most people are interested in learning how to write better code" I was interested in knowing how to reference the function, for it's own sake not for my application. I did it another way in the end but it baffled me that I couldn't work out how to reference it. Your own comment about...
  19. BuilderSpec

    Access to SQL VBA Code stopped working

    Hi Variable i is passed into the function. Seems the issue is actually with the Now() bit as you identified. Thanks Graham Hope this helps! Regards BuilderSpec
  20. BuilderSpec

    How to call a public function

    I JUST WANTED TO KNOW HOW TO REFERENCE THE FUNCTION IN THE SUBFORM!!! Hope this helps! Regards BuilderSpec

Part and Inventory Search

Back
Top