Search:

Type: Posts; User: shunt

Page 1 of 13 1 2 3 4

Search: Search took 0.56 seconds.

  1. Re: [2005] Help needed with multiple datatables in datagrid

    Perfect.... That answers my question 100%.

    I think it's worth while noting that the methods described in the URL links above result in the results of the join being "readonly" (due to the fact we...
  2. Re: [2005] Help needed with multiple datatables in datagrid

    Thanks for that.
    In the example on MSDN, the last line binds the grid to the Customers DataTable in the DataViewManager.
    grid.SetDataBinding(viewManager, "Customers");
    How do I tell the grid to...
  3. [2005] Help needed with multiple datatables in datagrid

    Hi all,

    I am trying to show data from multiple related datatables in a datagrid. I can't seem to figure out how to do this.

    I have for example:
    one Member to 0 or many ReminderLog.

    The...
  4. Re: [2005] Where do you set the release config file?

    It's starting to look like they no longer support that because of their new settings classes and the way they work..... interesting. I am starting to think build events are the way to go.
  5. Re: [2005] Where do you set the release config file?

    There used to be a property called "Override file" under "Configuration Properties" -> "Deployment" on the project property pages.
  6. [2005] Where do you set the release config file?

    Hi all

    Super urgent!

    I upgraded my project from vs2003 to vs2005. In 2003, I had the project setup to build with app.config when in debug mode, but to use release.config when in release mode....
  7. Replies
    6
    Views
    1,900

    Re: doubts in running the crystalreports

    For those that are battling (as I did) to find the CrystalReportsRedist2005_X86.msm file for VS2005, they have been located at (as at 12 August 2008):...
  8. Replies
    6
    Views
    1,220

    Re: Object reference to number

    Hmm... looks promising... will investigate
  9. Replies
    6
    Views
    1,220

    Re: Object reference to number

    Thanks.. I am now using a private static hashtable to store references to the objects and am returning the hash code back to pl/sql. Doesn't seem like the most elegant solution to me, but it is...
  10. Replies
    6
    Views
    1,220

    Re: Object reference to number

    Ok, I will try and give a better explanation....

    As of Oracle 817, Oracle made available a PL/SQL package for XML manipulation (dbms_xmldom). The implementation behind this PL/SQL package was done...
  11. Replies
    6
    Views
    1,220

    Object reference to number

    Hi all,

    I am new to Java and need some assistance. I am using java stored procedures in Oracle and need to convert an object reference in java to a number so that I can pass it back to Oracle for...
  12. Replies
    4
    Views
    2,779

    Re: create excel file on linux

    Just by the way... There is also the HSSF libraries which do a lot of MS Office stuff. Not everything is implemented, but enough to get a good solution going. I am currently using these libraries for...
  13. Replies
    13
    Views
    870

    Re: Between in where critera?

    The code I supplied will simulate the existance of a "table of just month values". It would generate months between any two dates that OP supplies and treat the function as though it were an actual...
  14. Replies
    14
    Views
    1,695

    Re: If you work with XML...

    Okay... A schema file simply defines what the XML must conform to. Unfortunately, there is no magic "generate" function that will generate all the nodes required by your XSD. The good news is that an...
  15. Replies
    8
    Views
    2,993

    Re: Export Oracle table to excle

    Sheesh... still in vb6? I have done this exact thing in .NET as a separate class and works just fine. If you are willing to spend the time to convert it to COM visible, then you can have it.... let...
  16. Re: [2005] How to automatically save images to oracle database

    If you can get a handle on the stream of bytes for the image (whether it be from disc or from a scanner) then you can put it into an Oracle Blob right from you application (I assume .NET or Java). I...
  17. Replies
    13
    Views
    870

    Re: Between in where critera?

    Alas no simple function that will get the dates to appear like that. :cool:
    Here is something for you though (Oracle 10g solution... maybe also work on 9i too):


    CREATE OR REPLACE type...
  18. Replies
    14
    Views
    1,695

    Re: If you work with XML...

    Sorry. Firstly I made a mistake. A schema file has a file extension ".xsd". A template file has a file extension ".xsl".

    An XSD (schema) describes the layout of an XML file. An XSL (template)...
  19. Replies
    14
    Views
    1,695

    Re: If you work with XML...

    Hi, I don't think I fully understand your requirement. An XML Schema is XML. You can load a schema file directly into an XMLDocument object. Also, if you have an .XSL file you can simply rename the...
  20. Replies
    6
    Views
    1,109

    Re: [2.0] Pascal API declaration to C#

    I think the declaration is fine. I am able to compile and also run the function. I think the AccessViolationException has more to do with the fact that I am trying to read a string from the non-.net...
  21. Replies
    6
    Views
    1,109

    Re: [2.0] Pascal API declaration to C#

    The original call does not work at all. The declaration using managed string gives an AccessViolationException when I call the function. The char pointer version works, but when I try to extract the...
  22. Replies
    6
    Views
    1,109

    Re: [2.0] Pascal API declaration to C#

    NWRCODE is just a long return code.

    If I change the string pointer to a managed string, like this:


    [DllImport("ClxWin32.dll")]
    public static extern long NWCCGetPrefServerName(uint len, out...
  23. Replies
    6
    Views
    1,109

    [2.0] Pascal API declaration to C#

    Hi everyone,

    I am trying to come up with an external API declaration in C# for the following Pascal Syntax:

    #include <nwclxcon.inc>
    Function NWCCGetPrefServerName
    (len : nuint; ...
  24. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    I was hoping I wouldn't have to do this, but I suppose that is what security is about. This is going to mean doing some collaborative work with the network admins, and that is never a simple thing....
  25. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    I am finding a number of problems with the example code for SSL connection. Firstly, there is no declaration of the coll, nor the x509 variables used in


    if ( bHowToProceed...
  26. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    Just saw your last post now... An SSL solution?! Sheesh you're quick... I think you got your code library well organised.
    Ever done any Active Directory?
  27. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    The reply from the 636 port:
    No connection could be made because the target machine actively refused it <ipaddress>:636

    I am trying to get the SSL bind working with the Mono.Security.dll. I see...
  28. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    For those that want the latest release of the Novel.Directory.LDAP.dll, it can be found here: http://forge.novell.com/modules/xfcontent/downloads.php/ldapcsharp/

    It is still not clear whether Mono...
  29. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    I just found (http://www.novell.com/coolsolutions/feature/11204.html):
    Authenticate to the LDAP server with LdapConnection.Bind(). We support only cleartext authentication. SSL/TLS support is yet to...
  30. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    I have tried the code now. I am able to connect to the LDAP server, but when I try to bind (connstr, password), I get a LDAP error 13: Confidentiality required.

    After a little reading I found I...
  31. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    Eclipsyo! Thanks a million! I will test this first thing in the morning. I take it you do quite a bit of work with Novell. Also thanks for the quick lesson on the Novell tree. I am sure I'll have...
  32. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    Hi there...

    Thanks a million for your reply!

    My requirement is simply to "latch" onto the logged on user.

    In the organisation, the user accounts are managed using Novell NDS. The client...
  33. Thread: Novell API's

    by shunt
    Replies
    4
    Views
    1,059

    Re: Novell API's

    I suppose. Was hoping he had email messaging on...
    And the hunt continues...
  34. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    Yip, Novell. I have been searching for an SDK from Novell for the last 3 days and have come up with absolutely nothing. It's at times like this that I can see why Microsoft hold the monopoly (and...
  35. Thread: Novell API's

    by shunt
    Replies
    4
    Views
    1,059

    Re: Novell API's

    Hi, you say you got the login bit working? I am trying to do some integration with NDS, but am coming up seriously short on documentation. Could I get a sample?
  36. Thread: NDS validation

    by shunt
    Replies
    1
    Views
    459

    Re: NDS validation

    Every get the Novell NDS integration working?
  37. Replies
    1
    Views
    765

    Re: Novell NDS and VB .NET

    Ever get the Novell NDS integration working?
  38. Thread: NDS Search?

    by shunt
    Replies
    22
    Views
    2,023

    Re: NDS Search?

    Hi there, I was wondering whether you ever got this working?
    Any NDS integration at all?
  39. Replies
    4
    Views
    539

    Poll: Re: How many people read competition rules?

    fine print....

    I have won two competitions recently because people hadn't read the fine print saying they had to be there to claim the prize.
  40. Replies
    4
    Views
    539

    Poll: How many people read competition rules?

    Hey everyone, I was just wondering... how may people actually read competition rules when entering?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width