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

Search:

Type: Posts; User: yolip

Page 1 of 9 1 2 3 4

Search: Search took 0.12 seconds.

  1. How to add delimiter to the xml filed search result.

    data stored in xml field

    <taxonPath>
    <source>
    <string>edna-kla</string>
    </source>
    <taxon>
    <entry>
    <string>English</string>
    </entry>
  2. Replies
    2
    Views
    4,793

    Re: case sensitive issue

    Thank you for your reply, the situation does not allow me to use VB.NET. anyway i've found the solution for this,


    PropertyInfo lPropInfo =...
  3. Replies
    2
    Views
    4,793

    [RESOLVED] case sensitive issue

    Hi,

    I am getting an object property based on the variable i passed in, however, i found the case sensitive issue caused the property cannot be found.

    e.g., there is a property call RoleID, the...
  4. Thread: Rowerror

    by yolip
    Replies
    6
    Views
    1,171

    Rowerror

    If I use a DataTable
    DataGrid1.DataSource = DataSet1.Tables(0)
    it displays all rows and column from the table.

    If I use a DataRowArray
    DataGrid1.DataSource = DataSet1.Tables(0).Select()
    it...
  5. Replies
    4
    Views
    1,317

    Re: Break column into row

    i am doing it in sql 2008
  6. Replies
    4
    Views
    1,317

    Re: Break column into row

    i am doing it in sql 2008
  7. Replies
    4
    Views
    1,317

    Break column into row

    Hi,

    I am looking to break the following example into rows

    Source:
    loc1 loc2 loc3 loc4
    12 9 19 22

    Target:
    loc1 12
  8. Replies
    4
    Views
    1,048

    Re: "Beginner" C# programmer need a guru!

    It is not a right place for you to look for a soul-mate my friend! Arjay is right, google answers you everything including the answer from codeguru.com.
  9. Replies
    2
    Views
    1,227

    Re: Request.QueryString problem

    thanks for that, but it won't make any different.
  10. Replies
    2
    Views
    1,227

    Request.QueryString problem

    Hi guys,

    i am Request.QueryString["pwd"] to get the pwd value from the below url, but it cannot give me a right value.

    URL: ...
  11. Replies
    0
    Views
    1,430

    masterpage run after the content page

    Hi guys,

    I have a language dropdownlist in the master page, which will decide what language content need to be displayed, however, i've found the content page loads before the dropdownlist value...
  12. Thread: dynamic value

    by yolip
    Replies
    2
    Views
    917

    Re: dynamic value

    thank you! it works with PreRender event.
  13. Thread: dynamic value

    by yolip
    Replies
    2
    Views
    917

    dynamic value

    Hi,

    I am trying to dynamically get the value of a button by calling function in the value attribute. However, it doesn't work like this. Can i have give me a hand with it?


    ...
  14. Replies
    1
    Views
    22,438

    Activator createinstance with parameter

    Hi, I learnt the below code from here before, it works fine when i just loading up the dll that has no parameter. However, i am now requires to pass the parameter to the calling dll form.

    for...
  15. can't get the value from the control inside the Updatepanel

    Hi, I am trying to use the updatepanel in my form, but when i use the below code, the FileUpload1 control will never get any value. However, if i remove the updatepanel then it will works. So just...
  16. Replies
    0
    Views
    593

    Flash movie control

    Hi, I am using the following code to display a flash movie in asp.net page, it can be shown successfully, but i can't get the control (the play or pause bar) displayed. can anyone help me how to make...
  17. Re: this.controls not including the controls inside tabcontrol

    Great! thank you...i will try it
  18. Replies
    2
    Views
    5,104

    SHDocVw DLL Question

    Hi Guys,

    I am using .NET 2 and trying to use SHDocVw.dll to print a html file to the printer, however, I found most of the time if i step line by line will works, but won't work during the...
  19. Re: this.controls not including the controls inside tabcontrol

    Thanks guys, i worked out this with following code. Cheers,

    foreach (Control childControl in this.Controls )
    {
    if (childControl is TabControl)
    {
    ...
  20. this.controls not including the controls inside tabcontrol

    Hi All,

    I tried to get all the buttons in the working form using the code below, however, i found all the buttons in the Tabcontrol is not included in this.Controls. So how can i access all...
  21. Replies
    5
    Views
    2,524

    Re: Create outlook appointment

    thanks for that, but it is using CDO for Exchange 2000 Library which is only available in exchange server itself. How should i deal with that? Do the development work in exchange server and run under...
  22. Replies
    5
    Views
    2,524

    Re: Create outlook appointment

    thanks, but the result mostly in how to communicate with Outlook, not the exchange server. what i expected is to write the appointment data into exchange server 2003, and the data will automatically...
  23. Replies
    5
    Views
    2,524

    Create outlook appointment

    I have a system that create booking for the employee. now i want to create an appointment in exchange server and then it will be displayed in employee's calendar. Can anyone advise me how to do this?...
  24. Replies
    0
    Views
    1,301

    add subitems to checklistbox

    Hi, I would like to make a treeview like checkedlistbox, but with the checkbox in front of every items. The following code is only produce one level of the list, but i need multiple levels.
    for...
  25. Replies
    2
    Views
    3,642

    Re: get image from Properties.Resources

    Thank you! you are my legend
Results 1 to 25 of 208
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured