User Profile

Collapse

Profile Sidebar

Collapse
subrahmanyaam
subrahmanyaam
Last Activity: Apr 6 '07, 06:46 AM
Joined: Nov 21 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • subrahmanyaam
    replied to How to delete a posting
    in .NET
    when you log into thescripts.com and search typing 'subrahmanyaam' - you get lots of postings done here.. I need all the postings to be deleted as this is done by me.. I want to start fresh postings...

    Kindly assist me.
    Subbu...
    See more | Go to post

    Leave a comment:


  • Try this out.

    Assume you have two tables. Table1 and Table2

    Table1 has code1, item, rate, quantity ... etc..
    Table2 has code1, product, shipment, Date... etc

    place a query this say and try in query analyzer.

    select table1.code1, table1.item, table1.rate, table2.code, table2.product, table2.shipment , table2.date from TABLE1, TABLE2 where table1.code = table2.code
    ...
    See more | Go to post

    Leave a comment:


  • subrahmanyaam
    replied to Combobox Problem
    Thats very simple, try going to the properties of the combobox u r talking about and u have a sorting options, make that to TRUE and give it a try, hope u will get the results u r looking for...
    cyaa - subbu...
    See more | Go to post

    Leave a comment:


  • subrahmanyaam
    replied to how to clear listview items
    in .NET
    Hi Dude, The code that you have will work and has to work.

    Put that code before the listbox loads
    for example
    double click the listbox1 - then add the code next line
    listbox1.items. clear then start loading the list box
    listbox1.items. add("MALE")
    listbox2.items. add("FEMALE")

    Subbu...
    See more | Go to post

    Leave a comment:


  • I tried to modify your coding and is now giving me the desired results I was looking for. The modified code is as follows:-

    Dim sr As String
    Dim pos As Integer
    sr = TextBox1.Text
    pos = sr.LastIndexOf( " ' ")
    Dim place As String
    place = sr.Remove(pos, 1)
    MsgBox(place)

    If I enter name as D ' Souza, It gets name as D Souza,...
    See more | Go to post

    Leave a comment:


  • Thanks,
    Your code is working fine but its doing something more..
    when I type name D'Souza

    your code returns the value as Souza, in another words, its removing ( D' ) both the things and I just want to eliminate only the " ' " special character.

    can you please do something for this. Thanks for ur time and patience.
    subbu
    See more | Go to post

    Leave a comment:


  • How to remove extra character ' from the text box

    Guys,
    I have a textbox1.text on my form. If any person enters the name as D'Souza, i want to eliminate that " ' " from the text box before i could save it. How do i do this...
    please comment

    I am able to detect that extra character but dont know how to replace the text box without string (OR) removing the string from that name. The code to trace the string is as below:

    dim str as string
    ...
    See more | Go to post

  • subrahmanyaam
    started a topic Menu driven programs
    in .NET

    Menu driven programs

    Hi Guys,
    I had placed menu wizard on a form with these options :-

    File Search Exit
    Registration
    Renewals


    I am using vb.net 2003 and I dbl click on registraition to put the code as
    frmregistration .show, it doesnot works, first of all there is SHOW options available.

    How do i get this registration form...
    See more | Go to post

  • subrahmanyaam
    replied to how to connect with the database
    in .NET
    Go to microsoft SQL Servier - Enterprise Manager and create the table first with all the fields you need and Name the table.

    Go to control panel - dbl click on data source (ODBC) and click on the third tab - File DSN - Click on ADD - Select SQL Server from the drop down list - show the data source (name of the table - that you created using enterprise manger) follow the instructions - you should be be able to connect.
    Then...
    See more | Go to post

    Leave a comment:


  • subrahmanyaam
    started a topic How to delete a posting
    in .NET

    How to delete a posting

    I had done several postings and got replies to few of them. How do i delete my unwanted postings or those postings which I do not wanted it any more. Please comment.
    Subbu
    See more | Go to post
    Last edited by kenobewan; Feb 15 '07, 05:08 AM. Reason: Displaying email against site policy

  • Thanks Hari,
    I had just installed the vb.net + sql server on the system - will re-start building the progrm from tomorrow. I havent done MCA but hope I will be able to catch-up on vb.net. Are you working with any company, do u know any best institute near M.S.Nagar. I am taking up short course again. [phone number deleted]
    Thanks for your time
    subbu...
    See more | Go to post
    Last edited by kenobewan; Feb 16 '07, 02:58 AM. Reason: Delete phone number

    Leave a comment:


  • subrahmanyaam
    replied to Please recommend me a book on vb.net
    in .NET
    Please comment, the Black Book VB.Net you recommended is VB or VB.NET. However I did a search and got a link to purchase. Please comment, the book you had recommended is for VB.NET and not VB.

    Appreciate your feedback.
    Thanks for your time
    subbu...
    See more | Go to post

    Leave a comment:


  • subrahmanyaam
    started a topic Please recommend me a book on vb.net
    in .NET

    Please recommend me a book on vb.net

    Guys, Assume a dummy person wants to learn vb.net, can you suggest a book that would be ideal for any lay person to refer the book and start the programming, start development mini programs. I know the programming concept but dont know much about vb.net. I should tell you that i had just attended 20 days class on vb.net with msaccess back end few months ago. please recommend a book that would suit me and is easily available.
    email; subra...
    See more | Go to post

  • subrahmanyaam
    started a topic Any VB.NET Programmers here in bangalore
    in .NET

    Any VB.NET Programmers here in bangalore

    Guys any one here in bangalore who is in the process of learning VB.Net as I wanted to go parallel working online as I am also into .NET. I am based in Lingarajpuram, Bangalore.
    See more | Go to post

  • subrahmanyaam
    started a topic How to save text which comes with strings
    in .NET

    How to save text which comes with strings

    Gurus - please help me how to save the text name which comes in strings. For example the name is D'Souza, I have a problem in saving this text as the string in the name jeopardize the save command, and it encounters an error.

    Pls comment.
    See more | Go to post

  • subrahmanyaam
    started a topic How to edit record from ms-acess using vb.net
    in .NET

    How to edit record from ms-acess using vb.net

    Hi Guys - I am new to vb.net. I just created a form where I can add records and every record has an customer_ID number
    Now I want to edit a record using the cust_ID Number, how should I do it, Can u list down me the code. What I have tried is as follows:-



    Dim str As String
    str = "select * from doctor_mtable where Doctor_ID = cint(txtdid.tex t)"
    MsgBox(Str)
    ...
    See more | Go to post
No activity results to display
Show More
Working...