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 wOOdy-Soft 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: delphidestructor
  • Content: Threads
  • Order by date
  1. delphidestructor

    How do I print labels not linked to a data source?

    I just want to print simple labels. There will be two parameters; the starting number and the ending number. I just want to print out labels starting with the first parameter and continue printing, incrementing by 1, until the second parameter value is reached. Mike
  2. delphidestructor

    Any suggestions on how to suppress certain records?

    Scenario Parameters passed to report are min = 1 and max = 4 Rec 1: Cust A Rec 2: Cust A Rec 3: Cust B Rec 4: Cust A This is not usually going to occur and for printing it isn’t a problem. The reports need to be printed in the original order entered. Not sorted by customer. Problem : I...
  3. delphidestructor

    Should I consider using a bulk insert?

    I have a stored procedure that inserts records into a table that is about 600,000 records in size at this point. This stored procedure is called recursively from a middleware application that reads a text file and calls this procedure for every line of the file that has valid information. At...
  4. delphidestructor

    Dynamic field names

    Can anyone tell me why the value of @var2 can be used to execute a query but the value of @var1 cannot? Is there anyway to force sql server 2000 to recognize the value in @var1 instead of trying to read this as a column name? declare @var1 varchar(50) declare @var2 int select @var1 from...
  5. delphidestructor

    Help with adding column.

    Can anyone tell me why the first works in a sp and the second doesn't? 1) CREATE PROCEDURE w_z_testing AS create table #t_table (f1 int, f2 int) alter table #t_table add f3 int insert into #t_table (f1, f2) values (2,3) select * from #t_table GO RETURNS: (1 row(s) affected) f1 f2...
  6. delphidestructor

    Locking section size?

    I do not know if it is possible to do. I’m using version 9. I would like to lock the page header and footer sizes on a report template so any reports made from that template will look consistent. I do not want other report creators to be able to increase or decrease the height of the sections...
  7. delphidestructor

    How do I assign a variable field name?

    CREATE PROCEDURE testdynamtable AS set nocount on declare @tmpcolname varchar(20) set @tmpcolname = 'col1' create table #tmptable (@tmpcolname int) ^ | How do I do this? GO Mike
  8. delphidestructor

    seek row?

    Can anyone help? This seemed like simple task at first. I have a table f1 | f2 ---------- xx | 11 yy | 22 zz | 33 I want to select all rows but have the current record to be somewhere other than the first record. Do I use a index seek function and if so what is the syntax...
  9. delphidestructor

    LAN to LAN VPN Browsing?

    First let me describe the system I am working with at work. WAN -> DSL Modem -> Sonicwall firewall -> Win2003 VPN sever -> LAN. When I connect through a dial-up connection everything works fine. I can browse the network at work and even log onto my NetWare server. I might also need to mention...
  10. delphidestructor

    engine settings

    Does anyone know of any pervasive engine (O.S. Novell Netware 5.1) settings that may need to be changed to increase performance? We have an in-house app that uses pervasive 2000i sp4 (transactional only) but we have just added the accounting package ACCPAC that, I’m assuming, is using relational...
  11. delphidestructor

    help with frames

    I need some advice on how to make my frames work correctly with a login script. Ok here is what I want to happen. I have some ideas but wanted to know the best way of doing this. I have a menu frame with a login link to direct the main frame to a login page. That is no problem. But after a...
  12. delphidestructor

    String formatting questions?

    I’m new to php so keep that in mind when you read my question(s). What, if any, is the difference between; $myvar = “Joe Blow”; $outputstr = “The user is $myvar”; , $outputstr = “The user is “.$myvar; , and $outputstr = “The user is “; $outputstr .= $myvar; ? Another question I have that...
  13. delphidestructor

    Upgrade Advantage? More like downgrade.

    Upgrade Advantage? OK here’s the deal. I have reports in version 9 and I would like to convert them back to version 8.5. I do not know if this can be done but if anybody knows of a way or a utility that can do this please let me know. My bad. I should have researched a little more before...
  14. delphidestructor

    Printing to file without being prompted for the file name.

    Can anyone tell me how to print a report to a file without being prompted for the file name? I am using the report designer components in Delphi, if that helps any. I cannot find anyway within CR9 to set the printer output to a file. I want to be able to print to file using the printer...
  15. delphidestructor

    keyboard buffer

    Can anyone tell me a quick and easy way to flush the keyboard buffer without having to make a low level call or calling a dll. I am prompting with a, recursively called, yes - no message box and I do not want the user to be able to accidentally hit the space bar or enter twice. I want to flush...
  16. delphidestructor

    The InStr function and the space character

    I’m reading a simple text file and parsing the lines into an Excel 2000 worksheet. I’m using VBA (obviously) and the InStr function to return the positions for the Mid function. I have tried both of these and other variations of, to return the substring of number characters after the “$”...
  17. delphidestructor

    dail-up from app

    How can I call a dial-up connection from a VB6 application then get the IP from that connection? I can get the IP from my NIC from the winsock component but I want the dial-up IP number instead. Mike
  18. delphidestructor

    MS Backup -> where is it?

    Can anyone tell me where MS Backup is in XP Home edition? Mike
  19. delphidestructor

    Workgroup vs. Workstation

    I’m sure I know the answer to this but I am going to ask anyway. Can anyone give me a clear definition of the difference between the workstation engine and the workgroup engine? Also clear examples were each might be the better choice. Mike
  20. delphidestructor

    Multiple IP's

    Using the winsock control; if a machine has more than 1 IP is there any way to retrieve all of the IP’s? Or maybe to specify which adapter to retrieve the IP from? Thanks in advance for any help. Mike

Part and Inventory Search

Back
Top