Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

star_platinum

@star_platinum
About
Posts
6
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem to Convert a Javascript GTIN calculate function to VB.net
    S star_platinum

    Hi David, I got this error: System.Data.Index' is not accessible in this context because it is 'Private'.

    Visual Basic help csharp javascript database

  • Problem to Convert a Javascript GTIN calculate function to VB.net
    S star_platinum

    Hello, I am not able to convert this function to VB code.... This is the javascript function to get the last digit of a GTIN number:

    factor = 3;
    sum = 0;

    var gNum = '1234564020233'

        for (index = gNum; index > 0; --index) {
            sum = sum + gNum.substring(index - 1, index) \* factor;
            factor = 4 - factor;
        }
        cc = ((1000 - sum) % 10);
    
        result = gNum + cc;
       
        }
    

    I have the problem to deal with the substring function. Anyone can help?

    Visual Basic help csharp javascript database

  • How to Select the Next 20 records in SQL server?
    S star_platinum

    Thanks for your reply, I able to create the row number column but when I tried to select a range of row number. It appeared this error message " Conversion failed when converting the varchar value 'Row_Number' to data type int" I have used cast and convert already. Any idea? Tin

    Database tutorial question database sql-server sysadmin

  • How to Select the Next 20 records in SQL server?
    S star_platinum

    Hi All, I know "TOP" Function can select the TOP n records. How can I select records from for example 20 to 50? I know SQL server doesn't have "LIMIT" Function.... Thanks Tin

    Database tutorial question database sql-server sysadmin

  • How to split one dataset into two datatable???
    S star_platinum

    Thanks for your reply, Dave. The dataset is retrieved from database. What I am trying to do is select the Top 50 records in database then show the top 20 into a datalist and the rest in another datalist. I know in SQL server doesn't have the "LIMIT" function. Thats why I don't know how to get those 30 records. Thanks Tin

    Visual Basic tutorial question

  • How to split one dataset into two datatable???
    S star_platinum

    Hi All, I have created a dataset which contains 50 records. I want to put the first 20 records in one datatable and the last 30 records into another datatable. I don't know how to do it. anyone has idea? Thanks Tin

    Visual Basic tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups