Search results for query: *

  • Users: venky
  • Order by date
  1. V

    date field problem

    hi Actually the field in the oracle is date. This is the way i am writing select * from faults where to_char(to_date(occured,'dd-mon-yy'),'dd-mon-yyyy')=to_char(to_date('"&date1&"','dd-mon-yy'),'dd-mon-yyyy') This is working finein my office pc and not working in my home PC.The date...
  2. V

    date field problem

    hi I am run small sql command to extract the data from oracle from vb.net.But my problem is, while executing the command it displays the error msg as day of month should be 1 and last day of the month.but the same command execute on oracle it works very fine.What's the problem. Please...
  3. V

    How to change the TextBox height

    hi My problem is i want to change the textBox height whic is already set as 25 in VS 2005 i want to change this to 15.How is it possible, if any body having the idea regarding this please help me. Thq...
  4. V

    Add textbox to the panel for each buton click

    Thq But, It is working fine in the case of vb.net .I want to add the controls dynamic in the ASP.net.Today also i was tried so much to get this.Ever time new control was add but the old control was not a there.
  5. V

    Add textbox to the panel for each buton click

    Hi My task : I want to add new textbox to the exixting panel for each click on the button. Error : For add new textbox the previous textbox was disappear. Please help me how can reach my target.
  6. V

    How to get the current page textbox text

    Added textox to the table cell after page reload it disappear Hi ViewState.Add("flag", 1); TableCell tc = new TableCell(); TableRow tr = new TableRow(); TextBox t = new TextBox(); t.ID = "TB" + ViewState["flag"].ToString(); t.Text = "Venky" + ViewState["flag"].ToString()...
  7. V

    How to get the current page textbox text

    Hi My problem is in the textbox control i was print sth.I want to print this text in the same page after post back(i. buton click).How is it possible . plz help me.
  8. V

    Dynamic addition of control to the placeHolder

    Hi Here is my code in the page.ispostback dim t as new TextBox t.id="Td"&ViewState("ind") t.text="TB"&ViewState("ind") 'PlaceHolder1.Controls.add(t) i=Convert.int16(ViewState("ind"),Tostring()) PlaceHolder1.Controls.addat(i,t) viewState("ind")+=1 With the above code each time i was...
  9. V

    numbering a repeater rows

    Try this it will work at the same time give the result which fashion you need <%@ Page Language="VB" AutoEventWireup="True" %> <html> <head> <script language="VB" runat="server"> Sub Page_Load(Sender As Object, e As EventArgs) If Not IsPostBack Then...
  10. V

    Need help again... llooping

    // write & run this in console application Dim i As Integer = 5 Do Console.WriteLine("WOW") i = i - 1 If (i = 0) Then Exit Do End If Loop Console.ReadLine()
  11. V

    Interview FAQ

    Interview FAQ on .NET hi If any one having the idea regarding the interview FAQ online ebooks and documentation please help me regarding this any information. Thq one and all
  12. V

    Random no. generation

    hi first of all thqs to all,If any one having the idea regarding the random numbers generation code plz help me.
  13. V

    Interview FAQ

    hello Anybody having the idea regarding the interview FAQ website or documentation please help me. Thanq venkat
  14. V

    How to open the attached item in the application button click

    Thanks for quick reply But my requirement is automatically get the current application path,Even though after deployment the project in different location. Below is the code what i am using. I think it is lengthy ,Is there any short form of the same work. try { Process p; String s...
  15. V

    How to open the attached item in the application button click

    First of all i thank full to all. actually my problem is ,In my application Added NEW text item .I want to view this text file after btn click. Please any one have an idea regarding this please help me.
  16. V

    Printing form in vb.net (Urgent)

    Hi I am not sure it will work,But some how it gives the idea on Pring Form. Plz try by replacing the document selection with Current active form. Print using print dialog 1)Add a print dialog and document. 2)Dim a global pagesettings 3)set the printDocument's default pagesettings to your...
  17. V

    How to select the folder only

    Hi I am doing the small project in VB.NET.In this i want to select the folder only(not file).Is there any control to select the folder, like openfile dialogbox for select the file. Actual my requirement is, I want to surf the total folder which ever i was selected. Any one have any idea...
  18. V

    Oracle insertion error while win98 is used as client

    hi here i am facing peculiar problem i.e I was developed a project in vb.net in that one text file option is there. In the text file upload i was using the split option It is working fine in the win2000 PC. but when i am trying to upload the same text file from win98 PC as client it shows...
  19. V

    Data access error in win98 Executable file

    hi friends i am facing a problem while setup the ADO project in win 98 PC.It shows the error msg as " The .net data OLEDB provider requires Microsoft Data Access Components(MDAC) version 2.6 or later" How can i rectify this error in win98 pc ,plz help regarding this one.. thq...
Back
Top