Search:

Type: Posts; User: raghunadhs

Page 1 of 5 1 2 3 4

Search: Search took 0.08 seconds.

  1. Re: Writing data to a file presented in some other machine in network.

    Hi SVG3414 & sessi4ml
    It is working fine. I used machineName\Sharedfolder\TextFile.txt, like what svg3414 suggested.
    Thank alot. Sorry for the late reply..
  2. Re: Writing data to a file presented in some other machine in network.

    Thanks SVG3414 & sessi4ml.
    I will try this, and let you know the feed back.
    Thanks once again...
  3. Re: Writing data to a file presented in some other machine in network.

    I will try to explain my requirement.

    Five to six users need to access(Read/Write) some data (about two are three words) from a particular machine. For this, I need to write an application.

    I...
  4. [RESOLVED] Writing data to a file presented in some other machine in network.

    Hi All,
    I would like to writ one application in VB 6.0, which will write some data to a text file that is presented in some other machine (That other machine is in network).

    Can any one just tell...
  5. Automation on Existing EXE file operations using .net 2003

    Hi All,

    I am new to VC++ .net 2003. I want your help to implement one auto-mation tool. I Have an VC++ .net application exe file ( I don't have source code of that exe). I am able to run that...
  6. Re: Help needed calling C function using variable name

    Thank you very much wossname, it helped me a lot.
  7. Help needed calling C function using variable name

    Hi All,
    I have 100 functions which have similar name but different in last few characters. for example, void get_fun1(void), void get_fun2(void), void get_fun3(void), ..........etc void...
  8. Replies
    1
    Views
    317

    Regarding SQL Server joins

    Hi All,
    I have two tables. Asume those two tables are as Table1 and Table2.

    Table 1 and table 2 have same no of columns and have same values also. the Only Difference is Table1 contains some...
  9. Re: could you say how to send string parameters to a ATL com method

    Hi cheenu_vasan,

    i tried like this...


    STDMETHODIMP CSampleFunction14::Method14(BSTR S1, BSTR S2, long *Num)
    {
    // TODO: Add your implementation code here
    *Num=40;
    return S_OK;
  10. Re: could you say how to send string parameters to a ATL com method

    Hi cheenu_vasan,
    i could not get you. could u please explain detailed?

    Thanks in advance...
  11. [RESOLVED] could you say how to send string parameters to a ATL com method

    Hi All,

    i want to create a ATL com Object, and add this object as a reference to my VB application.
    my ATL com should contain 3 parametes. two are input parameters of type string, and an out put...
  12. Re: can u say how to write scripts in Ms Access?

    Hi anhn,
    sorry for the delay.

    I know how to write a delete statement. the code in my above post is an example for how i am using the IF statement. In my real application the table names, fields...
  13. Re: can u say how to write scripts in Ms Access?

    Hi,
    the sql statement is for Access database. and in text file the query will be like this....

    if ((select Marks from student where stuName ='Robert') < 50)
    Delete student where...
  14. Re: can u say how to write scripts in Ms Access?

    hi Hack,
    then can i use any record set in module? if so do you have any idea about syntax?

    thanks...
  15. Re: can u say how to write scripts in Ms Access?

    Yes mendhak. you are right. i want to read the sql statements from the text file and execute those statements in Access. is it possible for if
    and select statements?
  16. can u say how to write scripts in Ms Access?

    Hi All,
    i have two databases. one is SQL server 2000 and another one is MS-Access.
    initially I have same data in both the data bases. but now i made some changes in Sql Data base by writing some...
  17. Re: can u help me for a simple quey probelm Sql server 2000

    Thanks Szlamany.
    I wrote a cursor. and it is working fine.

    regards,
    raghunadhs.
  18. Re: can u help me for a simple quey probelm Sql server 2000

    Hi Hack,
    Ok i can do it like what you have suggested. but... suppose if i don't know which tableNames are reciding in the "metatable", then how can i do it? Actually it is a re-usable query in my...
  19. Re: can u help me for a simple quey probelm Sql server 2000

    Hi Hack,
    Thanks for your reply.
    The table names "student1", "student2"... will be available in the table called "metaTable". so i need to pick each tableName from "metaTable" and then i have to...
  20. [RESOLVED] can u help me for a simple quey probelm Sql server 2000

    Hi All,
    I am practising Sql server 2000.
    I have a table called "MetaTable" This "MetaTable" has only one field. that field name is "TableName" . and the records of the table are...

    TableName...
  21. Re: a simple query problem regarding joins

    Hi szlamany,
    thanks for your immediate correspondence. Two examples what u have shown are so good.this type of examples will make the new lerners(like me )how to use different clauses in different...
  22. Re: a simple query problem regarding joins

    Wonder ful eplenation szlamany!
    its working. And i added another statement to do remaining thing.. (printing those two rows...)
    what i did was......

    declare @varName varchar(50)
    declare...
  23. Re: a simple query problem regarding joins

    Hi szlamany,
    i am sorry if my post could not give you clarity. in that table in the previous Quote, there are 5 records. In that 5 records, there are two records with the same student_name,...
  24. [RESOLVED] a simple query problem regarding joins

    Hi All,
    i am practising Sql Server 2000. i try to solve a query but failed. can u help me? the problem is ......I have a table called "student". my table is like this...
    student_no,...
  25. Re: can you say what is the use of index in SQL server 2000?

    Hi szlamany,
    Really it is a good explenation. Thank you very much.
    regards,
    raghunadhs

    [QUOTE=szlamany]Indexes serve many purposes.

    A primary key index is almost required in order to have...
  26. can you say what is the use of index in SQL server 2000?

    Hi,
    could u pls illustrate what is the use of creating index in Sql Server 2000? Is it used to create a unique key for each row in a table ? or is there any other special reason for that?

    I...
  27. Re: a simple query problem regarding NULL value

    Thanks brucevde,
    it is working...
    regards,
    raghunadhs
  28. [RESOLVED] a simple query problem regarding NULL value

    Hi All,
    i started some practice on SQL server 2000. i have a table called "student". its fields are sno,sname .unfortunately this table is containing NULL values. now i would like to delete the rows...
  29. Re: could u tell me how to write a dynamic query which can hold a varchar type?

    Hi brucevde,
    Thank you very much.it is fine and working well. could you pls explain what is the need of two single quotes and how it will be treated those two singel quotes.
    Thanks & Regards:...
  30. [RESOLVED] could u tell me how to write a dynamic query which can hold a varchar type?

    Hi All,
    This is regarding SQL server 2000.

    How can i write a Dynamic query so that i can hold a varchar type variable also?
    please see the below sample example what i have written..

    Declare...
  31. Re: how can i use classes in VB 6.0

    Thanks RhinoBull,
    now i got clarity...

    thanks:
    regards:
    raghunadhs
  32. Re: could you please explain the shell execute function

    Hi Fazi,
    it is really an excellent clarification... really it helped me alot.
    Thanks:
    regards:
    raghunahds.v
  33. Re: how can i use classes in VB 6.0

    [QUOTE=pons]
    Hi Pons,
    Thanks, it is working. i think in the same manner, i can develope everything regarding to the classes.

    Thanks:
    regards:
    raghunadhs.
  34. Re: how can i use classes in VB 6.0

    Hi RhinoBull,
    i am sorry to say i could not be able to run your code, i think there may be any typing mistake, or i may need some instructions from you to run it.
    and i am getting...
  35. [RESOLVED] how can i use classes in VB 6.0

    Hi all,
    Like in C++, can i create any classes and objects for those classes in VB 6.0? if it is possible, could you provide me a sample example?

    Thanks:
    raghunadhs.
  36. Re: could you please explain the shell execute function

    Thanks for your immediate response. your answers helped me alot. but still i have a doubt. in the shellexecute function the last parameter is fsShowCmd. it is used to open the application window.....
  37. [RESOLVED] could you please explain the shell execute function

    hi All,
    i used shell execute method once to open a word document. at that time i copied and paste the following API from some where else.
    but i don't know how it works. the API is as...
  38. Re: Is there any Break state ment in V.B like c ?

    Thanks to All....
    Thank you very much.
    regards:
    raghunadhs.v
  39. [RESOLVED] Is there any Break state ment in V.B like c ?

    Hi All,
    in C-language, we have a "break" state ment. like that is threre any key word in V.b 6.0?

    my requirement is:

    if intArray(i)=intElement then
    i have to break the if
    ...
  40. Re: How Unions will be used practically in C?

    Thanks chemical nova, i am agreeing with you. i also could not find other exapmples.
    Thanks sun burnt, my faculty memeber also told an example which resembles like your one. but at that time i...
Results 1 to 40 of 172
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width