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

  • Users: mlowe9
  • Content: Threads
  • Order by date
  1. mlowe9

    Edge to edge printing not printing edge to edge

    I'm not sure if this is the correct forum for this. HP Laserjet 3015DN - HP Universal Print Driver. Edge to edge is turned on, but it's still cutting off right hand side of the form. Any idea why or any recommendations on fixing this? Thanks in Advance!
  2. mlowe9

    Return value in column based on subquery result

    I have a select query with a subquery as a column: select name, (select count(*) from children), address, city from parents John, 2, 123 Johnson St, Chicago Fred, 0, 456 Jackson Ave, Chicago Mark, 1, 789 Jordan Rd, Chicago This is a dummied down version of what I need to do. But what I want...
  3. mlowe9

    VSS checkout w/batch file

    I am trying to setup a batch file to check out a file using the "Don't get local copy flag". Looks like this would be -L (or -L+ or -L-), but I can't get any of the flags to work. It tells me that it is not a valid switch. Can anyone help?
  4. mlowe9

    Run SQL script against an array of databases

    Please let me start by saying I really don't know the syntax for SQL scripts when it comes to variables, loops, etc., so my example code I'm sure isn't close to what I need. Could someone share with me the syntax to run a SQL script against an array/list of databases. So instead of doing...
  5. mlowe9

    copy subset of records?

    current table: key formname userid fieldname x_coor y_coor --- -------- ------ --------- ------ ------ 1 form1 matt field1 1 1 2 form1 matt field2 100 1 3 form1 matt field3 200 1 4 form1 fred field1 5 50 5 form1 fred field2 500...
  6. mlowe9

    Read ASCII File in Clarion 6.3

    I am trying to read an ASCII file in Clarion 6.3, and I'm having a little trouble with it. I've tried 2 methods, one where I define the file using FILE,DRIVER('ASCII'... and one using the AsciiFileClass, but I can't get either to work for me. Could someone please give me some very simple...
  7. mlowe9

    .dtsx file association

    I had my .dtsx files built and I could run them by just running the .dtsx file. However, somewhere along the way, Windows (XP) has lost the file assocation for the .dtsx files, now I can't run them - I have to pull them up in Visual Studio to run them. What program do I need to point the...
  8. mlowe9

    Multiple instances of IDE

    I am using both Clarion 5.5 and Clarion 6.3 environments. I am currently only able to run one of each at a time. How can I make it so that I can have multiple .apps open in C55 or C63 at the same time? Thanks.
  9. mlowe9

    notebook s/pdif and external speakers

    I have a Sony Vaio vgn-ar770, which has an S/PDIF jack. I am trying to figure out what I need to do to get an external 5.1 speaker system connected to it. Can I buy a speaker set with the S/PDIF input, because I'm not finding any. Can anyone help me with this?
  10. mlowe9

    Visual C# vs VB.NET

    Let me start by saying I work in VB.NET, and I do not know C# at all. I have had several other techies tell me that C# is better than VB, but I would like to know why. Is it more robust? Is it better for performance? What makes it better? Is it worth learning the new language? Thanks for...
  11. mlowe9

    copying files - .CopyFile vs .ReadAllBytes + WriteAllBytes

    Doing some Q&D testing...if I copy a file using My.Computer.FileSystem.CopyFile and compare it to copying the same file using a combination of My.Computer.FileSystem.ReadAllBytes and My.Computer.FileSystem.WriteAllBytes, the Read/WriteAllBytes method is significantly faster (more than twice as...
  12. mlowe9

    Help with home wireless network

    Hello - I have a strange problem. I have 2 computers on my home wireless network. A laptop with Vista Home Premium and a desktop with XP Pro. Everything worked great until I had a problem with my desktop and decided to wipe it and rebuild it. Now, my laptop can't ping the desktop. I can see...
  13. mlowe9

    Copy one table to multiple databases

    Fairly new to SSIS, haven't done much with it. I have a "template" database where I have a table I want to "roll out" to multiple databases. I am currently doing this using SSIS by hard-coding all of the connections and doing the same Data Flow tasks over and over. However, when I need to add...
  14. mlowe9

    Windows XP - Lock workstation without CTRL ALT DEL

    I'm 99% sure there's a way to do this, because I think I've done it before. But now I can neither figure it out nor find how to do it somewhere on the net. I want to set my PC up so that when it locks (either manually or automatically), the CTRL ALT DEL isn't required, I can just type in my...
  15. mlowe9

    Remote Desktop - Client Black Screen

    I use Remote Desktop to support many users. Occasionally, after Remote Controlling their session, when I exit the client goes to a black screen and unable to do anything. The only options seems to be logging them off from server. If I try to Remote Control them again, all I see is the black...
  16. mlowe9

    SQL Server 2005 export table to file

    Attempting to convert from SQL Server 8.0 to SQL Server 2005. In SQL Server 8.0 Enterprise Manager, I could simply right-click on a table, Choose "All Tasks", and choose "Export Data" and I could dump the table to a file. Very useful for me to do a quick backup of a table for testing...
  17. mlowe9

    regexp

    How do I write a regular expression to exclude multiple characters. For example, if I have a 3-digit string, and I want to match anything EXCEPT 'ZZZ', how do I write the regexp to do that? I've tried every combination of [^ZZZ] or [^Z][^Z][^Z] or [^(ZZZ)], nothing seems to work. Thank anyone...
  18. mlowe9

    regular expressions

    Background: I am using MATCH with the Match:Regular flag to use a regular expression to match a pattern. How do I write a regular expression in Clarion to match everything EXCEPT a string? For example, I have a 3-digit string that I want the MATCH to return True if it's not 'ZZZ'. I've tried...
  19. mlowe9

    Views Beginner

    Would someone be willing to give me a very basic example of setting up and using a view? I have been through the help file many times, and it just isn't clicking for me. If you'd be willing to give me an example that would work. Just a simple example would help me tremendously...
  20. mlowe9

    Terminal services - copying files

    Is there a way to copy files from the local workstation to the terminal services client via command line (ie batch file)? I know I can copy from the server to the client like this copy c:\test.txt \\tsclient\c\ So can I go the other direction, from the client to the server? copy...

Part and Inventory Search

Back
Top