CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ppl1

Page 1 of 8 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    6,759

    onreadystatechange do nothing

    i wrote-
    function updateEventItems(value)
    { var xmlObj=null;

    if (window.XMLHttpRequest)
    xmlObj=new XMLHttpRequest();
    else if (window.ActiveXObject)
    ...
  2. Thread: Polymorphism

    by ppl1
    Replies
    5
    Views
    899

    Re: Polymorphism

    ok i get it now
    thanks :)
  3. Thread: Polymorphism

    by ppl1
    Replies
    5
    Views
    899

    Re: Polymorphism

    example-



    class animal
    { public void func() {...}
    }

    class dog extends animal
    { public void func() {...}
  4. Thread: Polymorphism

    by ppl1
    Replies
    5
    Views
    899

    Polymorphism

    hello,
    i know polymorphism gives you the ability to use the same object for several different types , but it can be done without polymorphism (with casting and inheritance)...
    so can someone...
  5. Replies
    1
    Views
    633

    select on dataTable

    how can i select some fields from dataTable (in dataSet)
    i tried someting like-
    ds.Tables(0).Select(String.Format("Field={0}",ColumnName))
    but its not working
    any idea?
    thanks in advanced
  6. Replies
    1
    Views
    7,661

    insert dataset into database

    is there a way to insert values (many rows) from dataset to the dataBase?
    thnaks in advanced.
  7. Thread: read excel file

    by ppl1
    Replies
    7
    Views
    1,727

    Re: read excel file

    im using the connection string-
    Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Book2.xls;Extended
    properties=Excel 8.0;IMEX=1;HDR=YES;"

    and im getting the error-
    Could not find installable...
  8. Thread: read excel file

    by ppl1
    Replies
    7
    Views
    1,727

    Re: read excel file

    i searched in the net and found that there are 2 ways to read from excel ,
    one is with OleDb and the other is using a com dll.
    what is the different between them? what should i use ?
  9. Thread: read excel file

    by ppl1
    Replies
    7
    Views
    1,727

    read excel file

    how can i read excel file from vb?
    what technic supports also csv files?
    thanks in advanced.
  10. Replies
    1
    Views
    1,173

    init comboBox from DataBase

    hi,

    i have 2 combo boxes and when the user choose some value from combo1 i need to get to dataBase and then fill combo2 with values.

    i thouth about using a dataset to save the possible values...
  11. Thread: RegExp

    by ppl1
    Replies
    1
    Views
    576

    RegExp

    hi,

    i want to find some pattern ([digits]) in my string so i wrote-


    Dim s As String
    s = "i am[8] [1] and [2]"
    Dim reg As New RegExp
    reg.Pattern = "\[\d\]"
    Dim m As Match
  12. Replies
    2
    Views
    654

    Re: calculate month in dateTime

    ok i just saw the dataDiff function...
    but i still dont know the answer for the second question...
  13. Replies
    2
    Views
    654

    calculate month in dateTime

    how can i get the month difference between 2 parameters of DateTime type?
    also - is it possible to know how many days are in a specific month? if yes, how?
    thanks in advaned.
  14. Replies
    0
    Views
    1,432

    get selected item in code behind

    i created a page with a table and a select option in it
    <body>
    <table>
    <select....>
    ...and so on

    i used them as a html tags and now i want to get the selected item (from the select) in the...
  15. Replies
    0
    Views
    623

    page cannot be displayed problem

    hi,

    in my project in using reports and when im clicking on the "Back" buttom on the standard buttons toolbar in getting the "page cannot be displayed" error.

    what can i do in order to solve...
  16. Thread: help with a query

    by ppl1
    Replies
    4
    Views
    908

    Re: help with a query

    ok thanks for the help
  17. Thread: help with a query

    by ppl1
    Replies
    4
    Views
    908

    Re: help with a query

    but how can i add a condition to a "where" ?
    im using sql-server
  18. Thread: help with a query

    by ppl1
    Replies
    4
    Views
    908

    help with a query

    i wrote a scalare function-

    select name,id

    from tableName

    where function1(id) / function2(id)>100

    but sometimes function2 returns zero so im getting a divide by zero exception.
  19. Replies
    6
    Views
    744

    Re: connect to sql server

    'SetDataBinding' is not a member of 'System.Web.UI.WebControls.DataGrid'
  20. Replies
    6
    Views
    744

    Re: connect to sql server

    im getting an error on SetDataBinding so i tried to use dataSource+dataBind
    but its still not working, i cant see anything.
    what else can it be?
  21. Replies
    6
    Views
    744

    connect to sql server

    what is wrong in my code? i cant see the records of the dataBase


    If (Not Page.IsPostBack) Then
    Dim con As SqlConnection = New SqlConnection ("Server=localhost;Database =...
  22. Thread: MySql & SP

    by ppl1
    Replies
    3
    Views
    939

    Re: MySql & SP

    nevermind...i get that
  23. Thread: MySql & SP

    by ppl1
    Replies
    3
    Views
    939

    Re: MySql & SP

    ok so how can i give a authorization to a proc table?
  24. Thread: MySql & SP

    by ppl1
    Replies
    3
    Views
    939

    MySql & SP

    how can i give a authorization to a proc table?
    i wrote-


    mysql> GRANT all
    -> ON proc
    -> TO Admin@localhost
    -> IDENTIFIED BY xyz;
  25. Thread: connect to MySql

    by ppl1
    Replies
    2
    Views
    848

    Re: connect to MySql

    its ok now
    thanks for the help
Results 1 to 25 of 178
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured