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

Search:

Type: Posts; User: yolip

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    473

    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 =...
  2. Replies
    2
    Views
    473

    [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...
  3. Thread: Rowerror

    by yolip
    Replies
    6
    Views
    495

    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...
  4. Replies
    4
    Views
    846

    Re: Break column into row

    i am doing it in sql 2008
  5. Replies
    4
    Views
    846

    Re: Break column into row

    i am doing it in sql 2008
  6. Replies
    4
    Views
    846

    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
  7. Replies
    4
    Views
    543

    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.
  8. Replies
    2
    Views
    875

    Re: Request.QueryString problem

    thanks for that, but it won't make any different.
  9. Replies
    2
    Views
    875

    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: ...
  10. Replies
    0
    Views
    1,082

    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...
  11. Thread: dynamic value

    by yolip
    Replies
    2
    Views
    498

    Re: dynamic value

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

    by yolip
    Replies
    2
    Views
    498

    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?


    ...
  13. Replies
    1
    Views
    11,222

    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...
  14. 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...
  15. Replies
    0
    Views
    398

    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...
  16. Re: this.controls not including the controls inside tabcontrol

    Great! thank you...i will try it
  17. Replies
    2
    Views
    2,908

    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...
  18. 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)
    {
    ...
  19. 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...
  20. Replies
    5
    Views
    1,681

    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...
  21. Replies
    5
    Views
    1,681

    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...
  22. Replies
    5
    Views
    1,681

    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?...
  23. Replies
    0
    Views
    426

    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...
  24. Replies
    2
    Views
    1,217

    Re: get image from Properties.Resources

    Thank you! you are my legend
  25. Replies
    2
    Views
    1,217

    [RESOLVED] get image from Properties.Resources

    Hi,

    I currently using the below code to assign image from Resources to menu.

    rm = new RibbonMenu();
    rm.Text="Search";
    rm.LargeImage = Properties.Resources.search;

    can i replace...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width