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: *

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

    Access to SQL VBA Code stopped working

    Hi I have some code in a form that writes to an Access table. this is it below. Dim rs As New ADODB.Recordset Dim sqlstr As String sqlstr = "select * from Employees where EmployeeID =" & i rs.Open sqlstr, CurrentProject.Connection, adOpenKeyset, adLockOptimistic...
  16. BuilderSpec

    How to call a public function

    Hi I have a form called Form1 , on Form1 I have a subform called Child7. Child7 shows as source object a form called "Form2". In Form2's VBA section I have a public function called testit(). What is the syntax to call testit() from Form1 ? I have tried call forms("Form2").testit() call...
  17. BuilderSpec

    Need help using OpenSSL in JAVA

    Hi Been handed a project that I am not sure about as not an expert in JAVA at all. We have a JAVA application that currently uses security certifcates to open a website. Basically the application is installed on client and when it is run it opens our website and performs whetever it needs...
  18. BuilderSpec

    Database transfer between Access and SQL

    Hi Have a program I am writing and part of it is : Run query on Access table to produce set of results Add same results to same table in SQL Server I have coded it as a ADOQuery for the Access and either ADOTable or ADOQuery for the SQL Server. I read each record then loop round the fields...
  19. BuilderSpec

    Field showing hashes / #### instead of text

    Hi Got an Access 2003 database and it is fine, works perfectly. I have a report that shows a total of £10,000 for example. In access 2003 it would appear that if the field is not big enough it just show2s it, brilliant !!! Clients are using same database using Access 2007, same report is...
  20. BuilderSpec

    Help adding Tbutton to DBGrid please

    Hi Hoping someone can help. Using C++ builder 6 New Project , add a TButton called Button1 , a DBGrid and associate some data to it. Mine has at least 3 columns of data. Want the end result to be that in the 3rd column I want a button to display. I have got this so far : void __fastcall...

Part and Inventory Search

Back
Top