Search:

Type: Posts; User: nitin_padwal; Keyword(s):

Search: Search took 0.00 seconds.

  1. SQL Re: Can Select statement be used along with Update statement?

    following query will help you to update multiple columns at once

    update tblOuter
    set colOuter1 = a.colInner1,
    colOuter2 = a.colInner2,
    colOuter3 = a.colInner3,
    from ( select...
  2. Answers
    2
    Views
    3,170

    Oracle SELECT statement...

    How do I use a varchar variable to specify a tablename in a SELECT statement???
    e.g. i want to write a procedure which accept table name as input and print the number of records in it;

    create or...
  3. Answers
    5
    Views
    3,643

    Re: School Project for Handicapped people

    Hye mca?? i did d same.......... First thing....is it a live project or just a dummy project if it is live then u will have to consider client server archi. Else u can develop a standalon application...
  4. Re: how can i find out duplcate numbers in an array?

    int arr[10],arrDupEle[10];
    int i,j,k;
    printf("Enter 10 ele :");//consider array of 10 ele
    for (i=0;i<10;i++)
    scanf("%d",&arr[i]);
    k=0;
    for (i=0;i<10;i++)
    {
    for (j=0;j<10;j++)
    {
  5. Answers
    3
    Views
    6,172

    Re: C Coding Question

    # include<stdio.h>
    # include<conio.h>
    void main()
    {
    char str[20],str1[20],str2[20],finalStr[20];
    int i=0,l=0,l1=0,l2=0;
    //accepting inputs
    printf("Enter string:");
    scanf("%s",str);...
  6. Re: Why we are using the int in Malloc function

    defalut return type of malloc function is void . so to explicitly convert it we need to specify (int *)
  7. Re: Pass parameters from one action to another action

    one action to another action
    what it means...?
  8. Answers
    7
    Views
    6,806

    Re: Convert to the uppercase letters

    Thanx to MS...no need to write any code for that...
    Set the text box's CharacterCasing property to CharacterCasing.Upper.
    at design time
  9. Answers
    3
    Views
    8,552

    Re: How to print an array in Richtext box

    hye just a small change in ur code reqd...

    For i = 0 To 3
    RichTextBox1.Text = RichTextBox1.Text & arr(i) & vbCrLf
    i = i + 1
    Next
  10. Answers
    2
    Views
    3,876

    Re: How to store a File in Databes?

    you want to store actual data from the file or just the file path???
    if u r storing data then prob. it will increase size of d db.
    instead i'll sugest u to follow these steps (to store only path)...
  11. Re: I want to open only one instance of an application

    i think there is a option provided my MS to restrict running the multiple instances of same application
    probably u can find it in projects property...
  12. Answers
    1
    Views
    2,756

    Re: button goes behind

    is there any method bringToFront for button object? is yes use it as....
    btnName.bringToFront()
Results 1 to 12 of 12
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact