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 Chriss Miller 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: nphani
  • Content: Threads
  • Order by date
  1. nphani

    DataGrid up and down

    Hello Friends, I am writing a Windows Form which contains a DataGrid bound to a DataSet. The requirement has come up asking me to implement 2 buttons (Up and Down). If a user clicks on the Up button, the currently selected row in the datagrid should go up and same with down. Say initially the...
  2. nphani

    C# and MS Excel

    Hello Friends, I have an excel file that contains 3 columns like this: A B C ------------------ <num1> <num2> $A * $B So, basically columns A and B contain some numbers. Column C contains the product of the numbers in A and B, per row. I want to write a C# code that writes into columns A and...
  3. nphani

    VB 6.0 Internet Explorer Printing Error

    Hello Friends, I use the following code to print HTML files using the SHDOCVW.DLL (By adding a reference to it): Dim iSHDocIE As SHDocVw.InternetExplorer Dim iSHDocWebBrowser As SHDocVw.WebBrowser Set iSHDocIE = New SHDocVw.InternetExplorer Set iSHDocWebBrowser = New SHDocVw.WebBrowser Set...
  4. nphani

    On Error GoTo statement

    Hi Friends, I am actually coding in VBA and could not find a better forum that could answer my question... I have 3 functions, one calling other and each call being handled by an error handler: Function A: _________ Top_A: On Error Goto ErrHndl_A B() ' call to function B() ErrHndl_A...
  5. nphani

    ODBC call failed on concurrent queries

    Hey Friends, I have an application written in VBA with Oracle backend. You can add a record in Oracle through VBA frontend. This addition of record involves querying for new record's number and then inserting etc. Everything works fine if only one user is creating a new record. But if 2 or more...
  6. nphani

    &lt;!-- #include file=... Name redefined...

    This must be a very simple question for most of you, but is important to me becos of the time constraint... I have a file say incFile.asp which declares variable as: Dim strConnection I include this asp in every file that needs a database connection (I should have used Application variable...
  7. nphani

    Load DropDown Box according to radio button selected...

    I have an ASP file with a set of radio buttons followed by drop down list... The requirement is that the contents in the drop down list should change according to the radio button selected. I can think of using 2 drop down lists and alternately showing one of them (while hiding the other). But...
  8. nphani

    2 Dimensional Array

    This question might seem too simple, but I am completely new to VBScript and am finding it difficult to declare a 2-D array. I want to declare an array as: int arr = {{1,2,3}, {4,5,6}, {7,8,9} .. and so on... } I have given the above in &quot;C&quot;. How would I do that in VBScript? And...
  9. nphani

    Tab Controls

    I have a real lengthy page and we have decided to shorten it using Tab Controls. Can someone guide me to a good tab code with decent look. Thanx, Phani
  10. nphani

    SQL Queries with Quotes for non-existent columns

    I have come across VIEWs given as : SELECT Name, 'Non-existent-field-with-quotes' AS Something FROM myTable; But I donot understand why would I need that &quot;Something&quot; when it is not present at all? For example: this is a sample VIEW SELECT myID, myName, myCity, myState, 'a' as a...
  11. nphani

    Crystal Reports Evaluation Download

    I want to work on Crystal Reports (preferably version 8.5) and am looking for a evaluation download of the same. I am not able to find any on the internet. Can somebody help me with a link. Thanx in advance, Phani
  12. nphani

    SQL Server on Windows XP Pro

    I am trying to install SQL Server 2000 on Win XP Professional and it says that XP Pro OS doesnot support Server and therefore only client tools will be installed. But I remember installing the server on winxp pro earlier and it worked fine then. Should I install something more too to make SQL...
  13. nphani

    Crystal Reports and ASP

    I am looking for a good documentation on using Crystal Reports from ASP. I am completely new to Crystal and would like some links for going ahead. Thanx in advance, Phani
  14. nphani

    migration from java to asp.net

    I am looking for a document which looks into the steps involved in migrating from java weblogic server to IIS server using ASP.Net but am not able to find any. Something like the issues involved, the steps involved, some important things to remember while doing it etc... Anyone with prior...
  15. nphani

    Security Management System

    How do we create security management system for asp web applications? How do we include security in the site like LDAP or single sign on? Phani
  16. nphani

    can xml contain images?

    I have to display images from server and am planning to use xml for the data transfer. I have images in my database in the form of a BLOBs. I am not sure how to get those BLOBs into XML. How does XML handle images? I have seen many references where XML contains the path of the image on the...
  17. nphani

    website vs portal

    Hi Friends, I was searching the net to know the difference between portal and website... and also have heard about soemthing called a portlet... whats that... Phani
  18. nphani

    .Net on Windows NT 4.0

    Hi Friends, I was trying to install .Net (academic version) on windows nt 4.0 system and it asked me to install SP6.0a. I did that from microsoft website and now my system is not booting (some problem with ntoskrnl.exe). When I asked my friend, he said that .net doesnot run on Windows NT, but...
  19. nphani

    INPUT TYPE=FILE... Database retrieval

    Hi Friends, I have a <INPUT TYPE=FILE...> which should show database value of the previously stored file path. I give it as: <input class=&quot;regtext&quot; type=&quot;file&quot; name=&quot;smallimage&quot; value=&quot;<%=CStr(Replace(rsProduct.Fields(&quot;SmallImage&quot;), &quot;~&quot...
  20. nphani

    Inserting New lines in text email

    Hi Friends, I am using CDONTS for emailing and everything is working fine. But I want to send text emails with some information like: A: xyz B: pqr etc etc... I am able to get the information but am not able to insert new line characters into the text. I am using recordsets for developing the...

Part and Inventory Search

Back
Top