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

    Waiting for an Array to be populated

    Hi all, I'm trying to prevent my web page loading before I've populated a session array. I can't use isdefined because it's normally populated all the time, but the values change from page to page. Can anyone suggest a way of doing this? Many thanks, Carl
  2. cturland

    Losing Session Variables in IE6?

    I know other people are suffering from this problem: You set your session variables, then when you change your URL and try and retrieve them, they are gone. I searched all over the internet for an answer and at last I have found it. IE6 does not like intranet server names with '_'. I don't...
  3. cturland

    0x80004005 Unspecified error

    This problem is driving me mad and it has only become present since I switched to Win2000 - this could also mean it was when I switched to IE 6.0. I connect to an Access database using a DSN string as follows: -------------------------------------------------------- strConnection =...
  4. cturland

    Making websites viewable in any resolution!

    Hi all, I've always struggled to make my websites compatiable with all resolutions and screen sizes. I normally recommend that my web-sites are viewed in 1024x768 on the opening screen, but I do not think that is very professional. How do web-sites make their pages viewable in any resolution...
  5. cturland

    Passing a username and password to a Firewall popup

    Hi all, Is it possible to pass a username and password automatically to a Firewall popup? Thanks in advance, Carl
  6. cturland

    Passing a username and password to a Firewall popup

    Hi all, Is it possible to pass a username and password automatically to a Firewall popup? Thanks in advance, Carl
  7. cturland

    Using <(less than) in CFQUERY

    Hi all, I'm not sure if this is a problem but I've noticed that when I use a < in my CFQUERY, ColdFusion takes it as being the opening of a new tag. I know this because the closing </cfquery> is two different colours. I'm not getting an error, but I'm slightly worried it might be affecting...
  8. cturland

    Making sure an array has been populated:

    Hi all, I've populated a session array with 659 objects. The problem is that sometimes I try and access the array to quickly before it has finished populating - which obviously returns an error. Is there anyway that I can check that the 659 element of the array is there, I know I can check to...
  9. cturland

    Changing a bmp image size in VB

    Hi all, Is it possible to change a bmp image size in VB without the use of any paint packages? Thanks, Carl
  10. cturland

    CFOBJECT - accessing a dll on a machine other than the server

    I'm having trouble accessing a dll on a machine that is not the server. I'm using the following code, <CFOBJECT name=&quot;obj_name&quot; action=&quot;CREATE&quot; type=&quot;COM&quot; class=&quot;advOBJ.OBJ&quot; context=&quot;REMOTE&quot; server=&quot;200.100.10.12&quot;> I keep getting the...
  11. cturland

    Using a SQL Transaction in VB6

    Hi all, I'm trying to use an SQL Transaction in my VB module. I need the transaction to build a database, for example: BEGIN TRANSACTION CREATE TABLE dbo.Table1 { Field_Name char(10) NULL }ON [PRIMARY] GO COMMIT How do I run this from VB? I've tried using it like an SQL statement but it is...
  12. cturland

    Doesn' t anyone know??! ActiveX dll........

    I've posted this a few times before but never had a reply, its still causing me problems! I'm trying to access the available printers in an ActiveX dll on a web interface. This is a bit of sample code: Function AvailPrinters() as String dim PrintData as Printers dim sPrinters$ For Each...
  13. cturland

    Doesn' t anyone know??! ActiveX dll........

    I've posted this a few times before but never had a reply, its still causing me problems! I'm trying to access the available printers in an ActiveX dll on a web interface. This is a bit of sample code: Function AvailPrinters() as String dim PrintData as Printers dim sPrinters$ For Each...
  14. cturland

    Doesn' t anyone know??! ActiveX dll........

    I've posted this a few times before but never had a reply, its still causing me problems! I'm trying to access the available printers in an ActiveX dll on a web interface. This is a bit of sample code: Function AvailPrinters() as String dim PrintData as Printers dim sPrinters$ For Each...
  15. cturland

    Printers.Count - Please Help! :)

    Hi all, I've created an ActiveX dll that counts the amount of printers on a machine using a simple &quot;msgbox(printers.count)&quot;. When I call the function in a VB application it returns 7 - which is correct. I'm now trying to use the dll within a Cold Fusion page(web enviroment)...
  16. cturland

    Using Printers.Count - Help needed!!

    Hi all, I've created an ActiveX dll that counts the amount of printers on a machine using a simple &quot;msgbox(printers.count)&quot;. When I call the function in a VB application it returns 7 - which is correct. I'm now trying to use the dll within a Cold Fusion page(web enviroment)...
  17. cturland

    Setting Devmode?!.......

    Hi all, Has anyone else had trouble using the settings in Devmode? I'm trying to set some of the values for printing but the program doesn't seem to take much notice of them and its really frustrating!!!! I'm using windows NT incase that has anything to do with it? I've declared Devmode as a...
  18. cturland

    Change Printer in VB - HELP!

    Hi all, I'm really am stuck on trying to get Crystal Reports to change the printer in VB. This is the code I am using but it always returns an error - any ideas??! I first populate a list box with all the available printers and then allow the user to select one. Any help would be really...
  19. cturland

    Programming Crystal Reports in VB - HELP!

    Hi all, I really am stuck on trying to get Crystal Reports to change the printer in VB. This is the code I am using but it always returns an error - any ideas??! I first populate a list box with all the available printers and then allow the user to select one. Any help would be really...
  20. cturland

    Sorting in a CFGRID

    Regardless of what values you put in the CFGRID, it always treats them as strings and sorts accordingly. Is there a better GRID control to use in Cold Fusion, or is there a way around this? I have used leading zeros as a temporary solution but clearly this is not ideal.

Part and Inventory Search

Back
Top