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 strongm 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: christhedonstar
  • Order by date
  1. christhedonstar

    Propose new location in Outlook

    I thought we already tried that - but will try again tomorrow...
  2. christhedonstar

    Propose new location in Outlook

    Then the recipients would have two copies of the same meeting..Wouldn't they?
  3. christhedonstar

    Sybase query via python not working when using arguments

    furthermore to clarify these two statements: curs.execute(sqlToRun, [ 'first', 'second', 'third' ]) curs.execute(sqlToRun, [ 'forth', 'fifth', 'sixth' ]) Does that mean that the server doesn't need to translate sqlToRun to internal format twice?
  4. christhedonstar

    Sybase query via python not working when using arguments

    Cool Thanks. So the speed benefit only comes if you use the same cursor object correct? What factor of speed benefit would we be talking here?
  5. christhedonstar

    Propose new location in Outlook

    Hi In outlook 2007 there is a propose new time button. Can you do the same for location somehow? Thanks, Chris
  6. christhedonstar

    Sybase query via python not working when using arguments

    thanks only just read these replies, but came to the same conclusion earlier. But I thought it was down to our implementation - not the documentation being wrong!! This for me is not much better than using sqlToRun = 'Select %s %s %s' % ('first', 'second', 'third') Although documentation said...
  7. christhedonstar

    Sybase query via python not working when using arguments

    So.... sqlToRun = '''Select @test ''' curs.execute(sqlToRun, {'@test': 'me'}) print curs.fetchall() returns [('@test',)] sqlToRun = '''Select @test ''' curs.execute(sqlToRun, { 'me': '@test'}) print curs.fetchall() returns [('me',)] sqlToRun = '''Select @test '''...
  8. christhedonstar

    Sybase query via python not working when using arguments

    Great suggestion am trying now. Just doing select 'me' which should return me
  9. christhedonstar

    Sybase query via python not working when using arguments

    sqlToRun was in first instance SELECT TOP 1 * FROM ADDRESS WHERE ad_city = @city In the second it was SELECT TOP 1 * FROM ADDRESS WHERE ad_city = 'NEW YORK' So in the first I thought @city would have been replaced with 'NEW YORK' by the excute method... Maybe I can turn on logging in...
  10. christhedonstar

    Sybase query via python not working when using arguments

    0.39 is the version. Cheers. So its not that...
  11. christhedonstar

    Sybase query via python not working when using arguments

    These are the things I've tried: >>> Sybase.CS_VER_STRING 9144 >>> Sybase.CS_CURRENT_VERSION 112 >>> Sybase.CS_PACKAGE_CMD 152 >>> Sybase.CS_TDS_VERSION 9105 >>> Sybase.CS_VER_STRING 9144 >>> Sybase.sys() TypeError: 'module' object is not callable >>> Sybase.sys <module 'sys' (built-in)> >>>...
  12. christhedonstar

    Sybase query via python not working when using arguments

    Yes it the cursor object. I couldn't figure out how to tell which version we were using (I thought of that also). There were were a few version properties on the module but most of them returned much higher numbers than 0.39. I thought that maybe 0.39 was the package version and that what I...
  13. christhedonstar

    144Mbps more like 12Mbps

    I changed to channel 13 and get around 24Mbps.
  14. christhedonstar

    Sybase query via python not working when using arguments

    sqlToRun = '''SELECT TOP 1 * FROM ADDRESS WHERE ad_city = @city ''' curs.execute(sqlToRun, {'@city': 'NEW YORK' }) #sqlToRun = '''SELECT TOP 1 * FROM ADDRESS WHERE ad_city = 'NEW YORK' ''' #curs.execute(sqlToRun) inlineSqlResults = curs.fetchall() print inlineSqlResults...
  15. christhedonstar

    144Mbps more like 12Mbps

    Hi, I have a Dell laptop with N wireless card in. I have a belkin draft n wifi router (belkin). I have qnap raid nas wired into the router via cat 5 cable. My laptop says it has got a 144Mps connection but when I try to copy a file from the laptop to the nas it does it at about 12Mbps (~1.5...
  16. christhedonstar

    read receipts in outlook

    Hi, How do I have by default read receipts requested in Outlook EXCEPT for a specific set of recipients. Thanks, Chris
  17. christhedonstar

    graphics in c#

    Yeah PG001 thats what I was thinking I need to paint stuff in a different place when a new person gets added. I'm not sure how I'll do that yet, maybe I'll put draw coordinates in the constructor of the person...
  18. christhedonstar

    graphics in c#

    Thanks I may try that. What I did in the end was have a file with this in it: public static Graphics FORMGRAPHICS; Then when the form loaded in the constructor I put FORMGRAPHICS = this.CreateGraphics(); It worked in a test. What do you think to that approach versus yours? cheers, Chris
  19. christhedonstar

    graphics in c#

    Yeah I would do. Its more about how to get the objects to draw to the form.
  20. christhedonstar

    graphics in c#

    Ok thanks. I already can draw to the form by overriding the OnPaint method using System.Drawing assembly. What I want to know is that if I have lets say a Person object say Person chris = new Person() and I want to have an image associated with chris, which would be drawn onto the form, what...

Part and Inventory Search

Back
Top