Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • Reply To: Telegram: @Approveddocuments

    Document document = new Document();

    Page page = new Page(PageSize.Letter, PageOrientation.Portrait, 54.0f);
    document.Pages.Add(page);

    string labelText = "Hello World...\nFrom DynamicPDF Generator for .NET\nDynamicPDF.com";
    Label label = new Label(labelText, 0, 0, 504, 100,...
  • Reply To: Telegram: @Approveddocuments

    # Solve the quadratic equation ax**2 + bx + c = 0

    # import complex math module
    import cmath

    a = 1
    b = 5
    c = 6

    # calculate the discriminant
    d =...
  • Reply To: Telegram: @Approveddocuments

    --after some inserted lines...
    SELECT
    p.[name],
    sp.permission_name,
    sp.state_desc,
    sp.class_desc
    FROM sys.server_permissions AS sp
    JOIN sys.server_principals AS p
    ON sp.grantee_principal_id = p.principal_id
    WHERE p.[name] = 'YourTestLogin'

    --and some more breaks pasted from SSMS
    --comment
  • Reply To: Telegram: @Approveddocuments

    --after some inserted lines...
    SELECT
    p.[name],
    sp.permission_name,
    sp.state_desc,
    sp.class_desc
    FROM sys.server_permissions AS sp
    JOIN sys.server_principals AS p
    ON sp.grantee_principal_id = p.principal_id
    WHERE p.[name] = 'YourTestLogin'

    --and some more breaks pasted from SSMS
    --comment
  • Reply To: A backslash test

    #!/bin/bash

    echo \

    "here"

    echo -n "here" \

    \ echo -e " \ here"

    /* This has a backslash \

    continued */

    Test backslash inside code block:

    echo \
    "here";

     

    Same code out of code...

  • Reply To: A backslash test

    Test line ending with backslash: \

    Test backslash inside code block

    echo \  "here";

     

    Same code out of code block:

    echo \

    "here";

    • This reply was modified 3 years, 2 months ago by  administrator.
  • Reply To: New Topic test

    testing code

    Select something

    From somewhere

    Where avalue = 10

Viewing 7 posts - 1 through 7 (of 7 total)