|
Hi,
I have an application that only accepts macro written in javascript, and I would like to know how I can check if a file is currently being used.
Company policy : no access to the internet but CP
~RaGE()
|
|
|
|
|
Try delete it.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi,
I am basically a novice on VS 2005 and not much expert in ASP and VS
I am here trying to make a project in which i am using MYSQL Database .
and as I have XP home I am unable to install SQL server.
So right now i am facing two problems.
1. is configuring my website data it says
"Your application is currently configured to use the provider: AspNetSqlProvider"
so how could i change this and could i make ACCESS or MYSQL as my database for storing login user name and roles and other data of my website
2.while using FORM VIEW (data controls) and MYSQL as data Source...As i have been told i have to write "Coustom SQL Statements and stored procedures" while configuring the datasource,
so could anyone help here that how should i write that so that it behave as SQL database that is ...so that i don have to care about the coding part of the addition modification and deletion..i.e. how to write quires in that, I mean here is it possible to that if i write some quires in that and my database become fully comaptible with the control and perform addtion delition and modification without coding load.
hope replied from your side..
kindly help ...
govind
|
|
|
|
|
govindkedia wrote: I am basically a novice on VS 2005 and not much expert in ASP and VS
You mean ASP.NET ? They are different.
govindkedia wrote: I am here trying to make a project in which i am using MYSQL Database .
and as I have XP home I am unable to install SQL server.
Wow.
1 - if you're using MySQL, why would you want to use SQL Server?
2 - what makes you think you can't run SQL Server ? IIS is the thing you can't run in the home edition.
There is a site called VBMySQL.com or something, dedicated to connecting to MySQL using VB. Assuming you're using VB.
govindkedia wrote: while using FORM VIEW (data controls) and MYSQL as data Source...As i have been told i have to write "Coustom SQL Statements and stored procedures" while configuring the datasource,
so could anyone help here that how should i write that so that it behave as SQL database that is ...so that i don have to care about the coding part of the addition modification and deletion..i.e. how to write quires in that, I mean here is it possible to that if i write some quires in that and my database become fully comaptible with the control and perform addtion delition and modification without coding load.
There are ways to use ASP.NET controls to minimise the SQL you have to write, but if you want to have control over what's going on, you want to be writing the SQL. SQL is easier than VB, anyhow.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Christian Graus wrote: Assuming you're using VB.
I found that a little humerous.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi All,
Can anyone tell me how to provide a name to ASP-intranet site.
Thanx,
SMK
|
|
|
|
|
Look for the <title></title> tags and place the name between them.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
wow, you must be psychic mate!
|
|
|
|
|
Hi,
Thanx for reply, but i want to provide a name to my intranet by which i can access my site in network, place of http://serverIP/FolderName/file.asp
Thanx & Regards
SMK
|
|
|
|
|
I guessed that much... you will have to set thi sat your router. Exactly how to do it is something I'm not too sure of.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
H1,
I provided a name but it run only on my system not other if you have some idea please tell me
Thanx & Regard
SMK
|
|
|
|
|
Can you provide the specifics of what you have done.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi,
Good Morning, I just set virtual directory at server and provide name for access main page, but there is a problem, if i access that page on my system it work but on other system in same network if you've any idea about that please tell me.
Thanx
SMK
|
|
|
|
|
What is the adresss you are using to access the site from your system?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi,
I just type name which i provided in place of address at server.
Thanx & Regards
SMK
|
|
|
|
|
Please type the string you use to access the server. This is very important in discovering the problem
What is wrong with WYSIWYG?
|
|
|
|
|
hyd-intranet is a string which i provide place of Server IP.
Thanx
SMK
|
|
|
|
|
Ok there may be 3 reasons for this:
1. Your server is not permitting external access
2. You may not actually have the server running
3. Your router may be blocking it
In my experience it is mostly problems with 1 and 2, but 3 is also very common.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Or you could just buy a domain and make it web accessible.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Hi All,
Can anyone tell me how to provide a name to intranet site.
Thanx,
SMK
|
|
|
|
|
|
Hi,
I created a virtual directory & provide a name to access my intranet site, but it work only on my system not any other system in network.Please help.
Thanx & Regards
SMK
|
|
|
|
|
I defined a class like this
function slideshow()
{
this.display_slide = display_slide;
}
function display_slide()
{
setTimeout(this.display_slide, 5000);
}
The problem is that this no longer refers to the slideshow object, but to the window object when the callback is made. Hence none of the code works the second time. The first time it works because it is directly invoked in the body onload event.
Is there a way to use setTimeout such that the function display_slide is called back in the correct context?
Thomas
modified 29-Aug-18 21:01pm.
|
|
|
|
|
Because you are calling it as a function it is part of the root document element. You could try creating an actual opject... tht might make life easier.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Thank you for the reply.
But no, I am not using it as a function; I am using it as an object as below.
var ss = new slideshow();
ss.display_slide();
Inside the function display_slide, the call that results from setTimeout goes to the window scope and not in the scope of ss. From what I read, this is expected javascript behaviour. I am searching for a solution to retain the function call in the scope of the object that invokes the setTimeout call.
Thomas
modified 29-Aug-18 21:01pm.
|
|
|
|