Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: pratibha14
  • Content: Threads
  • Order by date
  1. pratibha14

    Filter field having decimal values only

    Hi, I have a field named Qty which can have decimal values as well. I want to filter records where qty is in decimal (not int) I did as follow: select qty from table where qty like '%'||'.'||'%' but i think this makes query slow. Is there any in-built functio (or any other way) to fetch...
  2. pratibha14

    HTTP response code 403 error

    Hi.. I want the source code of a web page. So, I wrote following code: URL u = new URL("http://www.google.com/search?hl=en&q=camera&meta="); URLConnection uc = u.openConnection(); uc.connect(); InputStream in = uc.getInputStream(); But it returns this error "java.io.IOException: Server...
  3. pratibha14

    Check MDX Expression

    Hi, In role, I provide MDX expression in AllowedSet. I want to check this expression before creating role. Can anybody suggest me how to do this using its API? I am using Microsoft.AnalysisServices API to create ROLE. Thanks
  4. pratibha14

    Process is not executing

    Hi, I want to execute commands through .NET. Using process, i can execute them in WindowsApplication but the process doesn't work in WebApplication. I am executing a batch file which contains some commands to be executed. They don't have any UI and works in backgroud. Can it be security...
  5. pratibha14

    How to add image in dropdownlist?

    Hi Guys! I want to add text in dropdownlist with image. But I am nearly lost in finding how image can be added in dropdownlist. Thanks. Pratibha
  6. pratibha14

    Time in Millisecond

    Hi, I want time in milliseconds. One way that i came to knew is to use kernal32 as unmanaged code. Is there any other method known to anybody? Thanks in anticipatiion. Pratibha
  7. pratibha14

    Problem in creating windows user using adsi

    hi, From windows form application I can create new user on local machine without problem. But when I try to create new user in web application there is an error "System.UnauthorizedAccessException:General access denied error at System.DirectoryServices.Interop.IAds.SetInfo() at...
  8. pratibha14

    How to create windows user using .net

    Hi, I want to create windows user dynamically using asp.net. I've tried net.exe but i want some better solution. Can anyone give an example for it. Thanks
  9. pratibha14

    OLAP roles access from asp.net

    Hi friends, I want to access cube and dimension according to the permission provided in roles. so i have made a number of roles for different windows users. I use following connection string: Provider=msolap;Data Source=pratibha;initial Catalog=NewACDM;roles=Rolename But it does not access...
  10. pratibha14

    Interop Dll Problem

    hi, I have to add third party dll. But it returns the following FileNotFoundException: "File or assembly name 'TimesTen Provider, Version=6.0.3000.0, Culture=neutral, PublicKeyToken=421da04c8fc1f667', or one of its dependencies, was not found. " Also its Interop dll is not created. When i check...
  11. pratibha14

    Unable to find an entry point

    hi, i made a dll named rtbdts.dll and call it from vb.net through dllimport <DllImport("C:\misc\rtbdll\rtbdts.dll")> Public Shared Function Init() As String End Function But it returns the following error "Unable to find an entry point named 'Init' in DLL 'C:\misc\rtbdll\rtbdts.dll'." Any...
  12. pratibha14

    How to add user generated dll in vb.net

    hi.. I want to add a dll named rtb.dll to my vb.net project and use its function. But when i add it through Add Reference, it gives following error: "This is not valid Assembly or COM component" How can i add this dll in my project and use its function? plz help thanks
  13. pratibha14

    Internet Explorer height problem

    hi, I have a problem while using IE. While opening window of IE, it doesn't go below a specific height. For example i give 50 pixel hight, still it does not provide me this much height in window. My IE version is 2.6 Please try it. Thanks is advance
  14. pratibha14

    Embed Problem

    hi, Please help in embed. I know its syntax. my problem is in <embed name="ring" src="ring.wav" autostart="true" hidden="true" loop="true"> if i want to get the duration of this wave file, how can i get it? Please try it. thanks in advance
  15. pratibha14

    How to find the properties of .wav file

    hi how can we know that given .wav file playing using embed tag is completed or not. And what are the properties and events related with .wav file. One more thing, http://www.phpfreaks.com/javascript_manual/page/liveaud.htm says that embed.play can take two parameters while that doesn't work...
  16. pratibha14

    How to scroll the text

    hello, I know that text can be scrolled using marquee. but with this next instance of the text comes when the initial one is out of sight. Means for forming a loop, another instance of text comes in view when the first one is out of the view. But i want to scroll the text continously. Means...
  17. pratibha14

    how to get control, form and window from process.

    hi, i get the process from getprocess() method in c# but wants to get the window and controls of that window from it. How to do it??
  18. pratibha14

    how to get the controls from window in C#

    i get the window using FindWindow function but can't get the controls of that window.

Part and Inventory Search

Back
Top