hi i could not understand the "timestamp" what is timestamp and how can i get month from timestamp what is difference between timestamp and datatime in sql thanks in advance vijay kumar
vijaylumar
Posts
-
timestamp -
view state in asp.nethi where the view state is stored,intiailized in the page life cycle
-
debugging java script in asp.nethi all i want to debug the javascript function in asp.net is it possible, if yes then how. thanking you Vijay Kumar D
-
regarding webserver & database server & web application execution flowhi all, i have a webserver in which we host the web application and a database server i.e sql server both server are different. now my web page needs to interact with autocad application but autocad is not installed in the webserver but it is installed in database server i have a restriction to not to install the auto cad in web server but my web page should interact with autocad application & generate the drawings in client system. how can we solve this problem... regards vijay kumar
-
Connecting Sql Serverhi thanks for u r reply i allowed sqlserver to make remote connection but i have a doubt my server ip address is changed then should i do any settings to sqlserver 2000 regarding this ip address How the new ip address will be connected to sqlserver 2000
-
Configuring ip address to sqlserver 2000hi my server ip address is changed,should i configure the new ip address with the sqlserver 2000 which i m using in that system. if so, then wt are the steps to configure ip address to sqlserver 2000 Thanks in advance Vijay Kumar D
-
Connecting Sql Servereven it not solved the problem every thing is ok, remote connection is also allowed is there any thing else
-
Connecting Sql Serverthanks for u r reply but i m not using SQL server 2005 im using sql server 2000 and how should i configure -- allowed protocols and remote connection
-
Connecting Sql Serverhai i have a problem in connecting sqlserver my connection string is con = New SqlConnection("Network Library =DBMSSOCN; server = 210.211.225.48; database = CarDb; user id = sas; password =poi098;timeout = 60") but it is giving the following error A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 0 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.) please help me Thanks in advance Vijay Kumar
-
Connecting to Databasei can access the sqlserver using the server name in my local system in my system there is no sqlserver installed and when i upload the page and run it on browser then it does not work.
-
Connecting to Databaseim using SQLSERVER 2000 and it is configured to allow remote access till now i gone through connecting server using ip address can u tell me ,what settings to be made to server for connecting it through server name. my server name is BDPLServer1 and i have a small doubt regarding this if any one trying with the same server name and accessing my database is it possible
-
Connecting to Databaseas u said,i given the server name instead of ipaddress like this con = New SqlConnection("Network Library =DBMSSOCN; server =server1ABN; database = dvk; user id = sa; password ="";timeout = 60") but i get this error A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 0 - No such host is known.) all configurations are enabled to Sqlserver. only a ipadress of the server is changed. if ipadress of the server is changed then do we have to reconfigure the sqlserver with new ipadress from the past 1 week the website is running properly now the same server is configured with a new ipaddress This problem occurred with the changing of ipaddress can u help me
-
Connecting to DatabaseTo connect to database (sql server) im using the following con = New SqlConnection("Network Library =DBMSSOCN; server =ipaddress; database = dvk; user id = sa; password ="";timeout = 60") where ipaddress is the server ipaddress and it is like this 20.0.0.200 but recently my server ip adress is changed and i replaced it in the connectionstring but it is not working it is showing that webserver not found. should i configure the sqlserver with new ipaddress
-
Regarding word application using vb.nethi all in my project i have a task with Ms word application i have to open the already existing word document and i have to pass the values to the bookmarks in that document i written the following code Dim wordapp As New Word.Application wordapp = Nothing wordapp = CreateObject("word.application") Dim olddoc As Word.Document olddoc = wordapp.Documents.Open(AppPath + "Designs\Gantry2.doc") 'book marks For i As Integer = 0 To 48 With wordapp.ActiveDocument .Bookmarks.Item("b" + i.ToString()).Range.Text = DG_GanDict.Item("b" + i.ToString()) End With Next wordapp.ActiveDocument.SaveAs("test.doc") wordapp.Visible = True the above code works in Ms office 2003 but the same code does not works or executes in ms office 2007 even though i added the refernce when i run it in ms office 2007 i get Runtime.InteropServices.COMException This file could not be found. (C:\//Program%20Files/VCS/...) and ErrorCode = -2146823114 that to it happens in c:\ drive only when i copy and paste the application in other drive like D:\ it executes properly can any one have a idea about this problem and is there any common code which runs in ms office 2003 and 2007 versions thanks in advance vijay kumar d
-
dynamically writing text into word document using vb.nethi i m generating a output report in MS word document. i middle of report few values are based on user input if user inputs quantity =2 then i want to display two paragraphs simialary if quantity=3 then i want to display 3 paragraphs can one help me ...
-
using Notifyiconhi thanks for your reply can you give any link regarding this
-
using Notifyiconhi here is the code NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) IntialiseH() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) VerticalForces_a() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) HorizontalForces_b() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) Reactions_c() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) InclinedWallsPressure_d_e() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) LoadOnSloppedWalls_f() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) DesignOfInclinedPlate_g() NotifyIcn.ShowBalloonTip(1000, TipTitle, TipText, ToolTipIcon.Info) i can see the last msg clearly
-
using Notifyiconhi i m using notify icon for a windows application i have a lengthy function in which i display msg using the tooltip of notify icon. i have 10 msgs to be displayed using notifyicon when i run it is showing the last 10th msg only my reqirement is it should show 10 msgs with a time gap one after another
-
regarding variables declared in a pagehi i worked on windows application and now i m working on web application for the first time. the following is my code in defalut page Partial Class _Default Inherits System.Web.UI.Page Dim i As Integer = 0 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load End Sub Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click i = i + 1 MsgBox(i.ToString()) End Sub Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click i = i * 100 MsgBox(i.ToString()) End Sub End Class when i click button1 the value in i is 1. but when i click button2,it is showing the value in i is 0 but ihave to get 100 can any one tell me whats happening at button2
-
game programming in vb.nethi My application is like a brick game where i have to fill the space with correct brick size. i have a large rectangular/square container in that container , i have to place small rectangles or squares so that there should be less wastage of space in the container. first my doubt is can we do this application using vb.net or .net if yes then can you give a little bit idea or a link which can be helpful to me to start this kind of application. thanking you in advance vijay kumar D