Search:

Type: Posts; User: TheGiops

Search: Search took 0.02 seconds.

  1. VS 2013 Re: SAML Authentication problem. What's wrong with the WSDL?

    Anyone willing to take the challenge?

    :-)
  2. VS 2013 Re: SAML Authentication problem. What's wrong with the WSDL?

    Tried to create the class (C# or VB.NET) with SoapUI. That failed, too... DARN IT!
  3. Re: Do you often have to get a datafield from the DB? Quickly done!

    If the SQL isn't managed directly form the program, then absolutely yes.
    But If I'm SURE that the SQL comes only from my code, then I tend to be lenient... :-)
  4. Replies
    5
    Views
    813

    Re: Sql create table

    Yeah... Last time I used Access was in 1996.
    After that only SQL Server.
    So, yes. the int(10) is far off the correct path. Should be SHORT.
  5. Re: How to read raw data from within the project (VB Express 2010)

    AAAGH!
    You make me feel so old... But you are right.
    Working with a LOT of legacy code, one quickly forgets the new (And far better) ways to do things.
  6. Replies
    5
    Views
    813

    Re: Sql create table

    int(10) is not a valid data type.

    It's either varchar(10), nvarchar(10) or int

    At least in SQL Server
  7. Re: How to read raw data from within the project (VB Express 2010)

    There are several ways.

    The most practical is to use an array, where you can split the data which need to be separated by a known character.



    Dim sData as String = ".01|.04|.07"
    dim nArray...
  8. VS 2013 SAML Authentication problem. What's wrong with the WSDL?

    Hello!

    I've been trying for quite a long time to configure a SAML Authentication and Assertion system used by Arsenal, which is the agency used by the Regione Veneto (Italy) for the Healthcare...
  9. Do you often have to get a datafield from the DB? Quickly done!

    Function used to get a single item of information from a table, given a valid query

    Example...


    Dim Last_Name as String = GetSingleField("SELECT LastName FROM Clients WHERE ID = '" & Client.ID...
  10. Replies
    5
    Views
    3,703

    Re: If you need to calculate someone's age...

    :-)

    I noticed the "code" tag too late, and posted in the wrong place.
    Soooo... I think that as a new entry I did good enough, right?

    Hello to everybody!
  11. Replies
    5
    Views
    3,703

    Re: If you need to calculate someone's age...

    I suspected something like this.

    Going there. I thought the routine might have been useful for someone.

    :-)
  12. Replies
    5
    Views
    3,703

    If you need to calculate someone's age...

    ...Here is how you do it. (VB.NET)

    Public Function CalculateAge(Birth As DateTime, TodayDate As DateTime) As String

    Dim dob As DateTime
    dob = Birth
    Dim tday As...
Results 1 to 12 of 12



Click Here to Expand Forum to Full Width