Search:

Type: Posts; User: sw_is_great

Page 1 of 9 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    737

    for getting the number of records in a table :...

    for getting the number of records in a table :
    select count(*) from TABLENAME;
  2. Replies
    8
    Views
    632

    Or encrypt the number using any encryption algo...

    Or encrypt the number using any encryption algo...
  3. Replies
    5
    Views
    494

    anyway it is possible to create table in DB at...

    anyway it is possible to create table in DB
    at runtime
    use CREATE TABLE
  4. Replies
    5
    Views
    494

    If u were using Oracle, there is a solution and...

    If u were using Oracle, there is a solution
    and that is called
    Global Temporary table........

    For getting first 50 recs use rownum < 50 in the where clause
  5. Replies
    8
    Views
    755

    Happens with me too...

    Happens with me too...
  6. Replies
    3
    Views
    395

    select * from tableName where date1 between...

    select * from tableName
    where date1 between date2 and date3;

    where date1 is the name of the date field

    date2 and date3 are two dates provided by you...


    please note you may need to convert...
  7. Thread: You are...

    by sw_is_great
    Replies
    26
    Views
    1,253

    Again nothing

    Again nothing
  8. Thread: You are...

    by sw_is_great
    Replies
    26
    Views
    1,253

    nothing

    nothing
  9. Replies
    46
    Views
    2,309

    to get the next number SELECT ...

    to get the next number

    SELECT
    MP_BCA_CYCLE_NUM_1SQ.NEXTVAL
    FROM
    DUAL;
  10. Replies
    46
    Views
    2,309

    create a sequence . The perpose of the sequence...

    create a sequence . The perpose of the sequence is what is required by you.

    CREATE SEQUENCE ABC_SQ
    INCREMENT BY 1
    START WITH 1
    MAXVALUE 999999999
    ...
  11. Very funny mendhak.

    Very funny mendhak.
  12. Replies
    1
    Views
    389

    i think for each table u will use a separate form...

    i think for each table u will use a separate form ,or atleast a frame.
  13. Replies
    7
    Views
    1,382

    if it is on some values of one col use group by ...

    if it is on some values of one col use group by
    like

    select col1,count(*)
    from tablename
    group by col1
  14. Replies
    7
    Views
    1,382

    what do u mean two or more counts in the one query

    what do u mean two or more counts in the one query
  15. Replies
    1
    Views
    384

    UPDATE TABLENAME SET COL2 = 'value2' WHERE COL1...

    UPDATE TABLENAME
    SET COL2 = 'value2'
    WHERE COL1 LIKE '%1234567891234%'

    1234567891234 is the 13 digit value
  16. Replies
    11
    Views
    1,824

    I remember a project that had an exe of 17MB and...

    I remember a project that had an exe of 17MB and after a long series of code reviews and some stuff changes the size was dropped to 8MB.

    Actually bigger exe takes lot of time to start and the...
  17. Replies
    12
    Views
    785

    Apart from readability I think there is no use...

    Apart from readability
    I think there is no use of the () here .
  18. Replies
    2
    Views
    509

    best method print statements

    best method

    print statements
  19. Replies
    4
    Views
    499

    in the bios there is one option that checks...

    in the bios

    there is one option that checks the order of drives it shouzld check while booting...
  20. Thread: rand()

    by sw_is_great
    Replies
    5
    Views
    508

    incluse time.h and do randomize before

    incluse time.h

    and do randomize before
  21. Replies
    3
    Views
    591

    for part 2 open it as modal

    for part 2

    open it as modal
  22. Replies
    2
    Views
    854

    make the style of the txtbox to flat.

    make the style of the txtbox to flat.
  23. Replies
    23
    Views
    3,352

    Big exe does not mean more memory usage. ...

    Big exe does not mean more memory usage.

    Donnt load all the forms initially,load only the form that is neded...
  24. Thread: MsFlexGrid

    by sw_is_great
    Replies
    2
    Views
    972

    It used to come with vb6 right ? I just love it.

    It used to come with vb6 right ?
    I just love it.
  25. control array is not there in vb .net but u can...

    control array is not there in vb .net but u can create an array of txtboxes orwhatever at runtime and then u can loop through those....
  26. Thread: MsFlexGrid

    by sw_is_great
    Replies
    2
    Views
    972

    MsFlexGrid

    Hi

    Is MsFlexGrid not available in VB.NET ?

    I remember it used to be with vb6 but now i cannot find it in vb .net....
  27. Replies
    3
    Views
    563

    What does that mean ???????????????????????????

    What does that mean ???????????????????????????
  28. I remember loading big text files (definitely...

    I remember loading big text files (definitely more than 64k)
    when I used to be in college and a newbie to vb(vb5).

    It used to load without giving any error.
  29. To find the ip address type the following...

    To find the ip address
    type the following command at dos prompt

    ipconfig
  30. u can use instr or substring

    u can use instr or substring
  31. Replies
    7
    Views
    534

    what do u mean by "other will not be able top...

    what do u mean by "other will not be able top access it " . not even select ??????????
  32. Replies
    4
    Views
    2,310

    if u have not comited try rollback.

    if u have not comited try rollback.
  33. Replies
    23
    Views
    3,352

    i think u r talking abut MDI application.... ...

    i think u r talking abut MDI application....

    select a form as mdi parent and others as child... see msdn for help ....

    if u r stuck , let me know , i will then give u direct code.
  34. Replies
    4
    Views
    766

    .selText

    .selText
  35. Replies
    7
    Views
    554

    2 pow x = y take log of both sides x log 2 =...

    2 pow x = y
    take log of both sides

    x log 2 = log y
    x = log y/log 2



    in other words u can try dividing the number with 2 till u get 0 , and then x = number of times u divided -1
  36. Replies
    1
    Views
    483

    What do u mean by system messages...... ur os is...

    What do u mean by system messages...... ur os is german right ???
  37. Replies
    3
    Views
    638

    if u r using odbc then "data source = name"

    if u r using odbc
    then "data source = name"
  38. yeh its infinity and tan 90 is infinity

    yeh its infinity and tan 90 is infinity
  39. Replies
    10
    Views
    1,460

    definitely its easier but what VBGuy showed is...

    definitely its easier but what VBGuy showed is the general logic
  40. Whats the probs with twips when we know the...

    Whats the probs with twips when we know the relation between it and an inch
    :wave:
Results 1 to 40 of 352
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width