Hi there, Please help me..It is urgent
This is Hriday, working on windows authentication with
Active Directory...
My requirment is when a user sends a request to my web
Applicatoin I want to Pop up windows Authentication box so
that user will give his userId, Password & domain name for
authenticaion. After that I want to take these three info
of user and make a search in Active Directory.
I am able to display Win Authentication Pop up by using
Authentication mode="Windows" and in Authrization tag,
deny user="?" and setting Win Integrated authentication in
IIS.
But I am not able to take user's info from Win
Authenication Pop-up Windows..as I used server variable
AUTH_USER and got userId. but when I use AUTH_PASSWORD I
am getting null value...
Can some one tell me how to get password and domain fields
value form Windows Authenticaion Box....
If this is not posible ... how can I make a search without
password and domain..in Active directory ....
I copy my code for retrieving user info form Active
Directory. Please help me..It is urgent.
Public Sub GetUserDetails(ByVal domain As String, ByVal
username As String, ByVal pwd As String)
Dim domainAndUsername As [String] = domain & "\" &
username
Private path As String
= "LDAP://AD/DC=AD,DC=SOLVERSA,DC=COM"
Dim entry As New DirectoryEntry(path,
domainAndUsername, pwd)
Try
'Bind to the native AdsObject to force
authentication.
Dim obj As Object = entry.NativeObject
Dim search As New DirectorySearcher(entry)
search.Filter = "(SAMAccountName=" & username
& ")"
search.PropertiesToLoad.Add("cn")
Dim result As SearchResult = search.FindOne()
'Update the new path to the user in the
directory.
path = result.Path
filterAttribute = CType(result.Properties("cn")
(0), String)
fullname = CType(result.Properties("cn")(0),
String)
search.PropertiesToLoad.Add("mail")
Dim resultemail As SearchResult =
search.FindOne()
email = CType(resultemail.Properties("mail")
(0), String)
search.PropertiesToLoad.Add("MemberOf")
Dim resultgp As SearchResult = search.FindOne()
groupName = CType(resultgp.Properties
("MemberOf")(0), String)
Catch ex As Exception
'Throw New Exception("Error obtaining user
details. " + ex.Message)
End Try
End Sub 'GetUserDetails 10 3841
Hi Hriday,
I use "IsInRole" to find these pages on MSDN, can you use this as a start
place to check if this can help you?
Cor This is Hriday, working on windows authentication with Active Directory... My requirment is when a user sends a request to my web Applicatoin I want to Pop up windows Authentication box so that user will give his userId, Password & domain name for authenticaion. After that I want to take these three info of user and make a search in Active Directory.
I am able to display Win Authentication Pop up by using Authentication mode="Windows" and in Authrization tag, deny user="?" and setting Win Integrated authentication in IIS.
But I am not able to take user's info from Win Authenication Pop-up Windows..as I used server variable AUTH_USER and got userId. but when I use AUTH_PASSWORD I am getting null value...
Can some one tell me how to get password and domain fields value form Windows Authenticaion Box....
If this is not posible ... how can I make a search without password and domain..in Active directory ....
I copy my code for retrieving user info form Active Directory. Please help me..It is urgent. Public Sub GetUserDetails(ByVal domain As String, ByVal username As String, ByVal pwd As String) Dim domainAndUsername As [String] = domain & "\" & username
Private path As String = "LDAP://AD/DC=AD,DC=SOLVERSA,DC=COM" Dim entry As New DirectoryEntry(path, domainAndUsername, pwd) Try 'Bind to the native AdsObject to force authentication. Dim obj As Object = entry.NativeObject
Dim search As New DirectorySearcher(entry)
search.Filter = "(SAMAccountName=" & username & ")" search.PropertiesToLoad.Add("cn") Dim result As SearchResult = search.FindOne()
'Update the new path to the user in the directory. path = result.Path filterAttribute = CType(result.Properties("cn") (0), String) fullname = CType(result.Properties("cn")(0), String) search.PropertiesToLoad.Add("mail") Dim resultemail As SearchResult = search.FindOne() email = CType(resultemail.Properties("mail") (0), String)
search.PropertiesToLoad.Add("MemberOf") Dim resultgp As SearchResult = search.FindOne() groupName = CType(resultgp.Properties ("MemberOf")(0), String)
Catch ex As Exception 'Throw New Exception("Error obtaining user details. " + ex.Message) End Try
End Sub 'GetUserDetails
Hi Hriday,
I use "IsInRole" to find these pages on MSDN, can you use this as a start
place to check if this can help you?
Cor This is Hriday, working on windows authentication with Active Directory... My requirment is when a user sends a request to my web Applicatoin I want to Pop up windows Authentication box so that user will give his userId, Password & domain name for authenticaion. After that I want to take these three info of user and make a search in Active Directory.
I am able to display Win Authentication Pop up by using Authentication mode="Windows" and in Authrization tag, deny user="?" and setting Win Integrated authentication in IIS.
But I am not able to take user's info from Win Authenication Pop-up Windows..as I used server variable AUTH_USER and got userId. but when I use AUTH_PASSWORD I am getting null value...
Can some one tell me how to get password and domain fields value form Windows Authenticaion Box....
If this is not posible ... how can I make a search without password and domain..in Active directory ....
I copy my code for retrieving user info form Active Directory. Please help me..It is urgent. Public Sub GetUserDetails(ByVal domain As String, ByVal username As String, ByVal pwd As String) Dim domainAndUsername As [String] = domain & "\" & username
Private path As String = "LDAP://AD/DC=AD,DC=SOLVERSA,DC=COM" Dim entry As New DirectoryEntry(path, domainAndUsername, pwd) Try 'Bind to the native AdsObject to force authentication. Dim obj As Object = entry.NativeObject
Dim search As New DirectorySearcher(entry)
search.Filter = "(SAMAccountName=" & username & ")" search.PropertiesToLoad.Add("cn") Dim result As SearchResult = search.FindOne()
'Update the new path to the user in the directory. path = result.Path filterAttribute = CType(result.Properties("cn") (0), String) fullname = CType(result.Properties("cn")(0), String) search.PropertiesToLoad.Add("mail") Dim resultemail As SearchResult = search.FindOne() email = CType(resultemail.Properties("mail") (0), String)
search.PropertiesToLoad.Add("MemberOf") Dim resultgp As SearchResult = search.FindOne() groupName = CType(resultgp.Properties ("MemberOf")(0), String)
Catch ex As Exception 'Throw New Exception("Error obtaining user details. " + ex.Message) End Try
End Sub 'GetUserDetails
On Thu, 24 Jun 2004 23:08:12 -0700, "Hriday" <hr********@yahoo.com> wrote:
¤ Hi there, Please help me..It is urgent
¤
¤
¤ This is Hriday, working on windows authentication with
¤ Active Directory...
¤ My requirment is when a user sends a request to my web
¤ Applicatoin I want to Pop up windows Authentication box so
¤ that user will give his userId, Password & domain name for
¤ authenticaion. After that I want to take these three info
¤ of user and make a search in Active Directory.
¤
¤ I am able to display Win Authentication Pop up by using
¤ Authentication mode="Windows" and in Authrization tag,
¤ deny user="?" and setting Win Integrated authentication in
¤ IIS.
¤
¤ But I am not able to take user's info from Win
¤ Authenication Pop-up Windows..as I used server variable
¤ AUTH_USER and got userId. but when I use AUTH_PASSWORD I
¤ am getting null value...
You cannot obtain the password from the login dialog when using integrated Windows based
authentication.
If you want to capture the user ID and password you will have to use Forms based authentication: http://samples.gotdotnet.com/quickst...formsauth.aspx
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic) -----Original Message----- On Thu, 24 Jun 2004 23:08:12 -0700, "Hriday"
<hr********@yahoo.com> wrote: ¤ Hi there, Please help me..It is urgent ¤ ¤ ¤ This is Hriday, working on windows authentication with ¤ Active Directory... ¤ My requirment is when a user sends a request to my web ¤ Applicatoin I want to Pop up windows Authentication box
so ¤ that user will give his userId, Password & domain name
for ¤ authenticaion. After that I want to take these three
info ¤ of user and make a search in Active Directory. ¤ ¤ I am able to display Win Authentication Pop up by using ¤ Authentication mode="Windows" and in Authrization tag, ¤ deny user="?" and setting Win Integrated authentication
in ¤ IIS. ¤ ¤ But I am not able to take user's info from Win ¤ Authenication Pop-up Windows..as I used server variable ¤ AUTH_USER and got userId. but when I use AUTH_PASSWORD
I ¤ am getting null value...
You cannot obtain the password from the login dialog when
using integrated Windows basedauthentication.
If you want to capture the user ID and password you will
have to use Forms based authentication: http://samples.gotdotnet.com/quickst...lus/default.as
px?url=/quickstart/aspplus/doc/formsauth.aspx
Paul ~~~ pc******@ameritech.net Microsoft MVP (Visual Basic) .
Thanks Paul for your cooperation,
But My requirment is to use Windows Authentication and
make a search in Active directory and get user's
information. For that I think I don't need user's
Password. Only with UserId I should be able to make a
search in Active Directory. Even I am able to do this when
my Web Application is on Active Directory's IIS. But I
have to make a search in such a senario that both Active
Directory and IIS are located on different phisical
machine. In this senario when I search using only Path and
user name...It raises an exception called
System.Runtime.InteropServices.COMException
I have search in msdn but did not get solution....
Please help me in this senario...
Thanks in adavance..
Hriday.
Funny I see I did not paste the link in. http://msdn.microsoft.com/library/de...nroletopic.asp
Cor I use "IsInRole" to find these pages on MSDN, can you use this as a start place to check if this can help you?
Cor
This is Hriday, working on windows authentication with Active Directory... My requirment is when a user sends a request to my web Applicatoin I want to Pop up windows Authentication box so that user will give his userId, Password & domain name for authenticaion. After that I want to take these three info of user and make a search in Active Directory.
I am able to display Win Authentication Pop up by using Authentication mode="Windows" and in Authrization tag, deny user="?" and setting Win Integrated authentication in IIS.
But I am not able to take user's info from Win Authenication Pop-up Windows..as I used server variable AUTH_USER and got userId. but when I use AUTH_PASSWORD I am getting null value...
Can some one tell me how to get password and domain fields value form Windows Authenticaion Box....
If this is not posible ... how can I make a search without password and domain..in Active directory ....
I copy my code for retrieving user info form Active Directory. Please help me..It is urgent. Public Sub GetUserDetails(ByVal domain As String, ByVal username As String, ByVal pwd As String) Dim domainAndUsername As [String] = domain & "\" & username
Private path As String = "LDAP://AD/DC=AD,DC=SOLVERSA,DC=COM" Dim entry As New DirectoryEntry(path, domainAndUsername, pwd) Try 'Bind to the native AdsObject to force authentication. Dim obj As Object = entry.NativeObject
Dim search As New DirectorySearcher(entry)
search.Filter = "(SAMAccountName=" & username & ")" search.PropertiesToLoad.Add("cn") Dim result As SearchResult = search.FindOne()
'Update the new path to the user in the directory. path = result.Path filterAttribute = CType(result.Properties("cn") (0), String) fullname = CType(result.Properties("cn")(0), String) search.PropertiesToLoad.Add("mail") Dim resultemail As SearchResult = search.FindOne() email = CType(resultemail.Properties("mail") (0), String)
search.PropertiesToLoad.Add("MemberOf") Dim resultgp As SearchResult = search.FindOne() groupName = CType(resultgp.Properties ("MemberOf")(0), String)
Catch ex As Exception 'Throw New Exception("Error obtaining user details. " + ex.Message) End Try
End Sub 'GetUserDetails
On Fri, 25 Jun 2004 08:17:19 -0700, "Hriday" <hr********@yahoo.com> wrote:
¤
¤ >-----Original Message-----
¤ >On Thu, 24 Jun 2004 23:08:12 -0700, "Hriday"
¤ <hr********@yahoo.com> wrote:
¤ >
¤ >¤ Hi there, Please help me..It is urgent
¤ >¤
¤ >¤
¤ >¤ This is Hriday, working on windows authentication with
¤ >¤ Active Directory...
¤ >¤ My requirment is when a user sends a request to my web
¤ >¤ Applicatoin I want to Pop up windows Authentication box
¤ so
¤ >¤ that user will give his userId, Password & domain name
¤ for
¤ >¤ authenticaion. After that I want to take these three
¤ info
¤ >¤ of user and make a search in Active Directory.
¤ >¤
¤ >¤ I am able to display Win Authentication Pop up by using
¤ >¤ Authentication mode="Windows" and in Authrization tag,
¤ >¤ deny user="?" and setting Win Integrated authentication
¤ in
¤ >¤ IIS.
¤ >¤
¤ >¤ But I am not able to take user's info from Win
¤ >¤ Authenication Pop-up Windows..as I used server variable
¤ >¤ AUTH_USER and got userId. but when I use AUTH_PASSWORD
¤ I
¤ >¤ am getting null value...
¤ >
¤ >You cannot obtain the password from the login dialog when
¤ using integrated Windows based
¤ >authentication.
¤ >
¤ >If you want to capture the user ID and password you will
¤ have to use Forms based authentication:
¤ >
¤ > http://samples.gotdotnet.com/quickst...lus/default.as
¤ px?url=/quickstart/aspplus/doc/formsauth.aspx
¤ >
¤ >
¤ >Paul ~~~ pc******@ameritech.net
¤ >Microsoft MVP (Visual Basic)
¤ >.
¤ >
¤
¤ Thanks Paul for your cooperation,
¤
¤ But My requirment is to use Windows Authentication and
¤ make a search in Active directory and get user's
¤ information. For that I think I don't need user's
¤ Password. Only with UserId I should be able to make a
¤ search in Active Directory. Even I am able to do this when
¤ my Web Application is on Active Directory's IIS. But I
¤ have to make a search in such a senario that both Active
¤ Directory and IIS are located on different phisical
¤ machine. In this senario when I search using only Path and
¤ user name...It raises an exception called
¤ System.Runtime.InteropServices.COMException
¤
¤ I have search in msdn but did not get solution....
¤
¤ Please help me in this senario...
If your web server is in the AD domain you should be able to query AD.
What is the line of code that is causing the error?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic) -----Original Message----- On Fri, 25 Jun 2004 08:17:19 -0700, "Hriday"
<hr********@yahoo.com> wrote: ¤ ¤ >-----Original Message----- ¤ >On Thu, 24 Jun 2004 23:08:12 -0700, "Hriday" ¤ <hr********@yahoo.com> wrote: ¤ > ¤ >¤ Hi there, Please help me..It is urgent ¤ >¤ ¤ >¤ ¤ >¤ This is Hriday, working on windows authentication
with ¤ >¤ Active Directory... ¤ >¤ My requirment is when a user sends a request to my
web ¤ >¤ Applicatoin I want to Pop up windows Authentication
box ¤ so ¤ >¤ that user will give his userId, Password & domain
name ¤ for ¤ >¤ authenticaion. After that I want to take these three ¤ info ¤ >¤ of user and make a search in Active Directory. ¤ >¤ ¤ >¤ I am able to display Win Authentication Pop up by
using ¤ >¤ Authentication mode="Windows" and in Authrization
tag, ¤ >¤ deny user="?" and setting Win Integrated
authentication ¤ in ¤ >¤ IIS. ¤ >¤ ¤ >¤ But I am not able to take user's info from Win ¤ >¤ Authenication Pop-up Windows..as I used server
variable ¤ >¤ AUTH_USER and got userId. but when I use
AUTH_PASSWORD ¤ I ¤ >¤ am getting null value... ¤ > ¤ >You cannot obtain the password from the login dialog
when ¤ using integrated Windows based ¤ >authentication. ¤ > ¤ >If you want to capture the user ID and password you
will ¤ have to use Forms based authentication: ¤ > ¤ http://samples.gotdotnet.com/quickst...lus/default.as ¤ px?url=/quickstart/aspplus/doc/formsauth.aspx ¤ > ¤ > ¤ >Paul ~~~ pc******@ameritech.net ¤ >Microsoft MVP (Visual Basic) ¤ >. ¤ > ¤ ¤ Thanks Paul for your cooperation, ¤ ¤ But My requirment is to use Windows Authentication and ¤ make a search in Active directory and get user's ¤ information. For that I think I don't need user's ¤ Password. Only with UserId I should be able to make a ¤ search in Active Directory. Even I am able to do this
when ¤ my Web Application is on Active Directory's IIS. But I ¤ have to make a search in such a senario that both
Active ¤ Directory and IIS are located on different phisical ¤ machine. In this senario when I search using only Path
and ¤ user name...It raises an exception called ¤ System.Runtime.InteropServices.COMException ¤ ¤ I have search in msdn but did not get solution.... ¤ ¤ Please help me in this senario...
If your web server is in the AD domain you should be able
to query AD. What is the line of code that is causing the error?
Paul ~~~ pc******@ameritech.net Microsoft MVP (Visual Basic) .
Hi Paul,
My web server in the AD domain only, but I am not able to
search user's info by the following code if I pass only
path as parameter to DirectoyEntry class..The same code is
working if I pass all the three parameter as path,userId
and password. but I can't get password from Windows
authenticatoin Popup box.....
I think I should be able to search in AD by only having
complete LDAP path and Username. I copy the complete code
here...I get error on following line
Dim obj As Object = entry.NativeObject
Thanks a lot for your cooparation..
COMPLETE CODE IS LIKE THIS...
Private path As String
= "LDAP://AD/DC=AD,DC=MyComp,DC=COM"
Private filterAttribute As String
Public fullname As String
Public groupName As String
Public email As String
Public Sub GetUserDetails(ByVal domain As String, ByVal
username As String) ', ByVal pwd As String)
Dim domainAndUsername As [String] = domain & "\" &
username
Dim entry As New DirectoryEntry(path) ',
domainAndUsername, pwd)
Try
'Bind to the native AdsObject to force
authentication.
Dim obj As Object = entry.NativeObject
Dim search As New DirectorySearcher(entry)
search.Filter = "(SAMAccountName=" & username
& ")"
search.PropertiesToLoad.Add("cn")
Dim result As SearchResult = search.FindOne()
'Update the new path to the user in the
directory.
path = result.Path
filterAttribute = CType(result.Properties("cn")
(0), String)
fullname = CType(result.Properties("cn")(0),
String)
search.PropertiesToLoad.Add("mail")
Dim resultemail As SearchResult =
search.FindOne()
email = CType(resultemail.Properties("mail")
(0), String)
search.PropertiesToLoad.Add("MemberOf")
Dim resultgp As SearchResult = search.FindOne()
groupName = CType(resultgp.Properties
("MemberOf")(0), String)
Catch ex As Exception
Throw New Exception("Error obtaining user
details. " + ex.Message)
End Try
End Sub 'GetUserDetails
On Sat, 26 Jun 2004 02:01:59 -0700, "Hriday" <hr********@yahoo.com> wrote:
¤ >What is the line of code that is causing the error?
¤ >
¤ >
¤ >Paul ~~~ pc******@ameritech.net
¤ >Microsoft MVP (Visual Basic)
¤ >.
¤ >
¤
¤ Hi Paul,
¤
¤ My web server in the AD domain only, but I am not able to
¤ search user's info by the following code if I pass only
¤ path as parameter to DirectoyEntry class..The same code is
¤ working if I pass all the three parameter as path,userId
¤ and password. but I can't get password from Windows
¤ authenticatoin Popup box.....
¤
¤ I think I should be able to search in AD by only having
¤ complete LDAP path and Username. I copy the complete code
¤ here...I get error on following line
¤ Dim obj As Object = entry.NativeObject
¤
¤ Thanks a lot for your cooparation..
¤
¤ COMPLETE CODE IS LIKE THIS...
¤
¤ Private path As String
¤ = "LDAP://AD/DC=AD,DC=MyComp,DC=COM"
Is this the root path of your domain? It doesn't look right to me. What is returned as the root when
you execute the following code?
Dim RootDSE As New DirectoryServices.DirectoryEntry("LDAP://RootDSE")
MsgBox(RootDSE.Properties("DefaultNamingContext"). Value)
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic) -----Original Message----- On Sat, 26 Jun 2004 02:01:59 -0700, "Hriday"
<hr********@yahoo.com> wrote:
¤ >What is the line of code that is causing the error? ¤ > ¤ > ¤ >Paul ~~~ pc******@ameritech.net ¤ >Microsoft MVP (Visual Basic) ¤ >. ¤ > ¤ ¤ Hi Paul, ¤ ¤ My web server in the AD domain only, but I am not able
to ¤ search user's info by the following code if I pass only ¤ path as parameter to DirectoyEntry class..The same code
is ¤ working if I pass all the three parameter as
path,userId ¤ and password. but I can't get password from Windows ¤ authenticatoin Popup box..... ¤ ¤ I think I should be able to search in AD by only having ¤ complete LDAP path and Username. I copy the complete
code ¤ here...I get error on following line ¤ Dim obj As Object = entry.NativeObject ¤ ¤ Thanks a lot for your cooparation.. ¤ ¤ COMPLETE CODE IS LIKE THIS... ¤ ¤ Private path As String ¤ = "LDAP://AD/DC=AD,DC=MyComp,DC=COM"
Is this the root path of your domain? It doesn't look
right to me. What is returned as the root whenyou execute the following code?
Dim RootDSE As New
DirectoryServices.DirectoryEntry("LDAP://RootDSE") MsgBox(RootDSE.Properties
("DefaultNamingContext").Value)
Hi paul, thank you for your help..
When I execute the above code to get root path of AD, I
get error that The
specified domain either does not exist or could not be
contacted.
But the same code gives my root path of AD as
DC=AD,DC=MyComp,DC=Com when I excute it from a Windows
Applicatoin. Why is it so...?
same code gives right result from Windows App, but gives
above error from my Web Application...is this because of
there is some problem of my IIS ? otherwise what is
different in accessing AD through Windows App and Web App..
How can I get and set my IIS root path to my Active
directory?
Please write me back...
Thanking you..
Hriday.
On Fri, 2 Jul 2004 03:12:44 -0700, "hriday" <hr********@yahoo.com> wrote:
¤ >¤
¤ >¤ Private path As String
¤ >¤ = "LDAP://AD/DC=AD,DC=MyComp,DC=COM"
¤ >
¤ >Is this the root path of your domain? It doesn't look
¤ right to me. What is returned as the root when
¤ >you execute the following code?
¤ >
¤ > Dim RootDSE As New
¤ DirectoryServices.DirectoryEntry("LDAP://RootDSE")
¤ > MsgBox(RootDSE.Properties
¤ ("DefaultNamingContext").Value)
¤
¤
¤ Hi paul, thank you for your help..
¤
¤ When I execute the above code to get root path of AD, I
¤ get error that The
¤ specified domain either does not exist or could not be
¤ contacted.
¤
¤ But the same code gives my root path of AD as
¤ DC=AD,DC=MyComp,DC=Com when I excute it from a Windows
¤ Applicatoin. Why is it so...?
¤
¤ same code gives right result from Windows App, but gives
¤ above error from my Web Application...is this because of
¤ there is some problem of my IIS ? otherwise what is
¤ different in accessing AD through Windows App and Web App..
¤
¤ How can I get and set my IIS root path to my Active
¤ directory?
¤
Sounds like a permissions problem. I would see the following Microsoft article: http://msdn.microsoft.com/library/de...asp?frame=true
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Andrew |
last post by:
Hey all,
I would like to preface my question by stating I am still learning ASP.net
and while I am confident in the basics and foundation,...
|
by: Dan |
last post by:
hi ng,
i have a problem with windows authentification.
i want to forward every user who
1. is not authorized
2. or could not be authenticated...
|
by: Eric |
last post by:
I trying to setup an intranet based on windows NT groups or roles.
I have used windows integrated authentication with impersonation first
but this...
|
by: Hriday |
last post by:
Hi there, Please help me..It is urgent
This is Hriday, working on windows authentication with
Active Directory...
My requirment is when a...
|
by: Mr Newbie |
last post by:
Hi,
Im in a situation where I need to restrict users, but I dont have access or
wont be allowed access to manage groups in the domain. How can I...
|
by: Jimmy |
last post by:
Hi,
I need to develop a secure Web Service that requires a username and
password. One of the requirements is that the WS supports Windows...
|
by: Lucky |
last post by:
hi guys,
after long long efforts i got access to the active directory for
"Intigrated windows authentication". now i', suppose to get access the...
|
by: Luwk |
last post by:
I have an application that communicates with the Company's Active
Directory to get the OU of the users.
This said application is an ASP.Net web...
|
by: JamieHowarth0 |
last post by:
I have been trying to find a solution to this on the Internet for months. Literally, ages and ages and ages, praying that someone in the open-source...
|
by: tammygombez |
last post by:
Hey fellow JavaFX developers,
I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
|
by: concettolabs |
last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: CD Tom |
last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
| |