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 SkipVought 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. 2Fuzzy4U

    Perfomance problems after restoring database as new database

    Thanks, but it doesn't seem to help. We checked and we run the queries, but still the databases are slow. It feels like the two databases are in "eachothers hair" somehow. __________________ Greetzzz Coretta (NL)
  2. 2Fuzzy4U

    Perfomance problems after restoring database as new database

    Hi, Hope someone can help. I'm not even sure if this is the right topic. But at the moment, all tips, hint and pointers are welcome. We wanted to seperate one project from an existing database. My collegue restored a backup of that database as a new database via sql server management Studio...
  3. 2Fuzzy4U

    passing selected value of CFSELECT in an URL

    Sorry I've tried that, but FORM, form or Form all end up telling me "Element SELECTOWNER is undefined in FORM" I've seen that error while searching, so I tried defining <cfparam name="Form.selectOwner" default="z"> It helps solving the error, but not for passing the correct value. It then...
  4. 2Fuzzy4U

    passing selected value of CFSELECT in an URL

    I feel foolish, but I can't seem to figure it out. I'm a relative newbee at CF, and have mostly been fixing problems in existing code. Now I'm building a new page and I'm stuck. I've got a filled CFSELECT on my form and want the selected value to be passed back as an argument in my url. This...
  5. 2Fuzzy4U

    distinct non visual objects' type

    Do I understand correctly, you want to create one non visual (say uo_Control) that contains two eat functions with the same argument only a different result based on the actual type of userobject you pass in? I don't think that is possible, but maybe this is an idea.. Have the 'overal' non...
  6. 2Fuzzy4U

    VS Add-In: Reset the propertygrid: how?

    Hi there, Visual studio 2005 - C# I'm building an VS add in which uses Visual Studio's propertygrid window to display stuff for my class-instances. object[] a = new object[1]; a[0] = aObject; ParentToolwindow.SetSelectionContainer (ref a); That works like a charme... but... I can't seem...
  7. 2Fuzzy4U

    Create Update statement with a timestamp in the where clause

    Thanks for the sugestions, Yes, I want to implement optimistic locking, that's why we have the timestamp fields in our database. But I realy don't want to add all columns of a table in a WHERE clause and just leave the timestamp. ========== I've also just found a solution (that works for me)...
  8. 2Fuzzy4U

    Create Update statement with a timestamp in the where clause

    Hi there, I've got an object/class that hold some attibutes which are inititaly filled with data using a select statement. (Odbc connection) This includes a database timestamp (stored as Byte[]). Each database row get's its own object/class instantiation. (I'm not planning to use any dataset(s)...
  9. 2Fuzzy4U

    Unicode header FileWrite (..,&quot;~hFF~hFE&quot; end up as 79 A9 for Korean????

    We've solved it with a workaround. It realy internaly that the characters are messed up, so we'll have a C function override the first two bytes.. Problem solved.. (Not quit how I would have liked to.)
  10. 2Fuzzy4U

    Obtaining IP address and hostname of a machine

    Hi, I didn't think of it, and I didn't try it out, but it looks like this is what you want to do. So check it out and have fun! http://www.rgagnon.com/pbdetails/pb-0132.html Greetzzzz Coretta
  11. 2Fuzzy4U

    Unicode header FileWrite (..,&quot;~hFF~hFE&quot; end up as 79 A9 for Korean????

    Sorry I forgot... I'm using Powerbuilder 10...
  12. 2Fuzzy4U

    Unicode header FileWrite (..,&quot;~hFF~hFE&quot; end up as 79 A9 for Korean????

    Hi, In my application I'm writing stuff to a file. I start with writting a Unicode header with FileWrite (il_fileHandle, "~hFF~hFE" ) before writting anything else to the file. Now we found that if we change the language to for example Hungarian or Korean the characters FF and FE end up in the...
  13. 2Fuzzy4U

    Converting from varchar to nvarchar

    Hum, I'm not realy a database-admin., so to be sure I'm not going to mess up customer databases I wouldn't mind some re-assurance and/or tips. I've done a (very) small test, and all looks ok. We're thinking about converting a number of varchar(250) fields to nvarchar. Should I be expecting...
  14. 2Fuzzy4U

    PB10-OLE DB connection setting that allows &quot;Unicode update&quot;

    Hi, While trying to figure out the impact of trying to get Korean characters used in my application I'm bumping into the following point. I can store Korean directly in the sql server 2000 database, I can retrieve them from the database, and can I see them on screen. But... How can I get my...
  15. 2Fuzzy4U

    PB10 - FileReadEx doesn't do what I expect

    Hi there, Two questions for Powerbuilder10: I try to read lines (FileReadEx) from a file and display them in a datawindow. The file contains some Korean. RFF+ACE:TSTT-281' NAD+SE+1388500146++ì¥?ì-˜ì „ì„ (주)냥아공장:ì-¬êµ¬ìž?:LG004+경기ë?„ ì•„ëƒ ¥ì‹œ ë?™ì•ˆêµ¬:호계ë?™ 452:135-709'...
  16. 2Fuzzy4U

    with OLE DB to SQL Server2000 - No nested cursors??

    Thanks....... [morning] I could have thought of that myself, just didn't cross my mind.
  17. 2Fuzzy4U

    with OLE DB to SQL Server2000 - No nested cursors??

    Not sure if this the correct spot for it, but I'm trying anyway. I'm going to use OLE DB to connect to an SQL Server. My code contains a OPEN cursor while another cursor is still open. That doesn't seem to work. Can somebody please tell me that there is an option or something I can set to get...
  18. 2Fuzzy4U

    PB9 - display Korean in a datawindow

    Hi, Our application reads in a file each line as a row in a datawindow. The document contains Korean characters. I've been playing around with the font.charset setting bat I can't seem to get the correct characters to be displayed. I've also tried using a rich text control, which gave me some...
  19. 2Fuzzy4U

    PowerBuilder 9 and Microsoft SQL Server Database

    Hi, I'm using sql server with pb9. In powerbuilder I connect to the sql database with user sa and I don't see any table owners (so no dbo) If I log on using a query analyzer (also with sa) than I do see the owner (dbo)
  20. 2Fuzzy4U

    DLL versions have prblem with array of structs?

    Hi, After building a application using the machine code option it looks like the application has problems with peaces of code working with arrays of structures. Does anybodu have any experiance with this problem? It doesn't crash if I simple build powerbuilder PBD. But that is currently not an...

Part and Inventory Search

Back
Top