User Profile

Collapse

Profile Sidebar

Collapse
Time
Time
Last Activity: Jan 27 '16, 04:45 AM
Joined: Jan 8 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Code:
    DropDownList1.SelectedIndex == 0)
            {
                Response.Redirect("page")
            }
    the above code helped!
    See more | Go to post

    Leave a comment:


  • I want a button to have a drop down list...how to do it?
    See more | Go to post

    Leave a comment:


  • How to add a link in linkbutton, am using Visual Studio 2008 C#

    Hello everyone,
    I am making a website using visual studio 2008; in C#. I want my page to navigate after clicking a button, I used linkbutton, but I didn't like it, as it looks different than the button. And I also don't know how to use anchor tag in c#. One more thing, I want to have a drop down list, after clicking a button, but couldn't find any option like that. I don't want to use a drop down list directly... as am having all the buttons...
    See more | Go to post

  • Time
    replied to Extern
    in C
    It was helpful enough.
    Thanks to both of you..:)
    See more | Go to post

    Leave a comment:


  • Time
    started a topic Extern
    in C

    Extern

    hi,
    Every one here knows the difference between global variables and extern variables.
    Thing am not sure about is; if i have defined a global variable outside main(); before main, it works fine.
    if we define it at the same place and use extern in main(), it still works.
    It is totally right syntactically and oterwise also.
    But isn't it a bit weird?.. i mean it's not defined outside the file and still the use of extern...
    See more | Go to post

  • Time
    started a topic Passing data to AES from kernel_sendmsg

    Passing data to AES from kernel_sendmsg

    hello,
    I have to add AES encryption in the process of data communication between 2 pc's which are on same LAN.
    It has to be done in the project of USB over IP, which enables us to have full functionality of remote USB device.
    I have figured out the function in the code of that project which actually sends the data, it's KERNEL_SENDMSG and the one which recieves it is KERNEL_RECVMSG.
    Hav also studied AES, but dont' know...
    See more | Go to post

  • Time
    replied to Definition of kvec
    Hey,
    I finally got its definition in linux-2.6.30/include/linux/uio.h
    I used grep command to find it out.
    But i have another doubt regarding why to use __kernel_size_t ; as it is defined same as size_t ; in /usr/include/linux/types.h
    See more | Go to post

    Leave a comment:


  • Time
    replied to Definition of kvec
    Forgot to mention certain details as:
    My distro:UBUNTU 9.04
    Kernel :2.6.30...
    See more | Go to post

    Leave a comment:


  • Time
    started a topic Definition of kvec

    Definition of kvec

    I need to clarify kernel_sedmsg function which sends tcp packets over network, for that i need to know the definition of struct kvec...
    i searched it a lot on google..but just getting its use and not definition....
    i even wrote definition of struct kvec in google but invain..
    Can someone also give me some tricks to search the exact things on google and fast as well...
    Most of the times i end up wasting lot of time but...
    See more | Go to post

  • Time
    replied to dot operator before member variable
    in C
    But then what is the type of those variables?....d ata type?? char,float,int? ?
    Is it the case that it takes its type according to initialized value of it?
    See more | Go to post

    Leave a comment:


  • Time
    started a topic dot operator before member variable
    in C

    dot operator before member variable

    hi,
    I have seen . operator used while defining structure before name of variable?
    ex.
    struct usb_driver stub_driver = {
    .name = "usbip",
    .probe = stub_probe,
    .disconnect = stub_disconnect ,
    .id_table = stub_table,
    };
    What is that, does someone know?
    See more | Go to post

  • Time
    replied to opening bashrc file
    1. usbip@usbip-desktop:~/usbip-0.1.7 /src/cmd/.libs$ sudo ./bind_driver
    2. [sudo] password for usbip:
    3. Usage: bind-driver [OPTION]
    4. Change driver binding for USB/IP.
    5. --usbip busid make a device exportable
    6. --other busid use a device by a local driver
    7. --list print usb devices and their drivers
    8. --allusbip make all devices exportable...
    See more | Go to post

    Leave a comment:


  • Time
    replied to opening bashrc file
    how come RS02gnx3054
    Banned is heading this post?
    It has been posted by me. How to do that?
    And why Banned is coming under this heading?
    See more | Go to post

    Leave a comment:


  • Time
    replied to Ld_library_path
    instead of LD_LIBRARY_PATH =$LD_LIBRARY_PA TH/usr/local/lib
    i used LD_LIBRARY_PATH =$LD_LIBRARY_PA TH:/usr/local/lib
    still not working. I need to know this people.
    See more | Go to post

    Leave a comment:


  • Time
    replied to Ld_library_path
    I have made the device as exportable before this.
    meaning i just have to make some changes in usr/local/lib using LD_library_path
    as usbipd -D is earlier step to exporting a device.
    So reply soon people.
    See more | Go to post

    Leave a comment:


  • Time
    started a topic Ld_library_path

    Ld_library_path

    i have to run server side of usbip; the thing that matters is at the time of compiling a project my libusbip.so.0.0 and some more files are getting stored in /usr/local/lib where as it should be in /usr/lib
    so i used:
    export LD_LIBRARY_PATH
    LD_LIBRARY_PATH =$LD_LIBRARY_PA TH/usr/local/lib

    ./configure --prefix=/usr

    make install

    but am getting the same error as i was getting without LD_LIBRARY_PATH ,...
    See more | Go to post

  • Time
    replied to Building driver/staging
    Changes need to be done in GUI window which comes after running make menuconfig.
    Device driver->staging drivers
    Exclude building drivers needs to be done opted as n
    USBIP support,client driver,host driver should be opted as M..
    make command after this will build the modules.
    See more | Go to post

    Leave a comment:


  • Time
    replied to Building driver/staging
    make menuconfig, make and make module along with make oldconfig can solve this.
    But usbip modules are not loaded.
    I need .ko modules to be there inside /drivers/staging/usbip
    See more | Go to post

    Leave a comment:


  • Time
    replied to make oldconfig.
    Yeah i was about to write it down in earlier post itself..but thought of avoiding it. The reason is; i was being really very silly,. actually i was writting the make command in my earlier version of linux ...and of course i should have written it in the latest version, the one which am installing.
    I know this is way too ridiculous and i wasted lot of time and energy of many ppl coz of this stupid thing.
    I really apologize for that.
    See more | Go to post

    Leave a comment:


  • Time
    started a topic Building driver/staging

    Building driver/staging

    Hello ppl,
    I want to build usbip folder; for loading modules which is in /drivers/staging.
    Command used for it is: make oldconfig
    but befor running this file i think we have to make some changes in .config present in usbip or some other file such as Kconfig present in staging
    Am not sure in which file do we have to make changes and what are those..
    if some1 knows plz reply soon..
    See more | Go to post
No activity results to display
Show More
Working...