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

    Periodic daily, weekly... function

    Hi all, I would like to create a function that do the periodic daily, weekly... reminder like if i select weekly, then it will auto create a new file and save it weekly so that the user can have that fresh file weekly. The difficuty here is the date of month are different. Some of them have 31...
  2. lehuong

    FEDEX API

    Hi All, I tried to integrate my shopping cart with the FEDEX API for the shipping rate and service. Anyone has any idea how to get this done? I have gone through the FEDEX site and got all the document, but still do not know how to build it yet. Please help!!! Thanks
  3. lehuong

    Database delete record using store procedure

    Hi all, I have a question regards to store procedure in SQL to delete records. Here is my code: CREATE PROCEDURE dbo.deleteCustomer_Records @CustomerID INT AS BEGIN Delete from OrderDetail AS A INNER JOIN OrderID B ON A.OrderID = B.OrderID WHERE B.CustomerID= @CustomerID END GO I have 3...
  4. lehuong

    Conflict between Visual Studio .net and Macromedia Dreamweaver???

    Hi all, I have built my website with .html pages in Macromedia Dreamweaver and then I wanted to have my VB .net code into the pages. The problem here is after I inserted the code, the dreamweaver can not show the design view. So am I in the right track to built a website like that or I have to...
  5. lehuong

    How can I open a page in a target frame?

    Hi all, I have this code: Response.Redirect("Login/defaultuser.htm") But I want this page to be redirect to to the main frame instead of redirect to itself. Hope that someone can help me out of this problem. lehoung
  6. lehuong

    TreeView

    Hi friends, I have a Treeview in my application. Notice that when we select a parent node and child node, we can get the information like node number, child number... Now I wanted to do it the other way around, I have the parent node number and child node number and I want to have my treeview to...
  7. lehuong

    File path problem

    Hi all, I have created an application in VB .Net. When I run the application to open a file and generate a html file, it worked well. However, when I double click a file to open it and generate a html file, it shows an error could not find the mypicture.bmp. What I have in the generate file is...
  8. lehuong

    Back button on the browser

    Hi all, I have a page "Home" that has the drop down list field. This ddl contain many options, each option is a link to another page. If I select to link a let's say page A. When I click the "Back" button on the browser to go back to the previous page and then click a button on that page. it...
  9. lehuong

    What is SQL authentification?

    Hi all, What is SQL authentification? and how to set it up on the web.config in order to user it? Thanks a lot lehuong
  10. lehuong

    Copy SQL Database Helppppp!!!

    I have a database name myDatabase in the SQL server 2000. Now I want to send this database to another server. How can I copy that database? Thank you. lehuong
  11. lehuong

    I could not see the pictures on my website when I publish them

    Hi all, I could not see the pictures on my website when I publish them. How can I change the permision so that I can see them on website. Thanks lehuong
  12. lehuong

    Testing for upload image

    Hi all, When I upload images to my website, I did see them. Could someone tell me how to test in ODBC or in... to see if my images are uploaded (or permited). Thanks Lehuong
  13. lehuong

    Component 'TABCTL32.OCX, COMCT232.OCX concerned

    Hi all, I have included (deploy) sample.exe file in my application "myproc.Start("Sample.exe")". I install my application in a pc, when I access the sample.exe, there is an error, both of the Component 'TABCTL32.OCX, COMCT232.OCX files are missing. I fixed the problem by copy those files into...
  14. lehuong

    Microsoft word must be installed for spell Grammer Check to run!

    Hi all, I got this error "Microsoft word must be installed for spell Grammer Check to run!" when I do the spell check code bellow. The it does the first spell check then the error appears. Anyone familiar with this problems? Dim strConsequense As String Dim objWord As...
  15. lehuong

    BOOTSTRAPPED FILE

    Hi all, I have a setup.exe and a boostrapped file bellow: [Bootstrap] Msi=programName.msi 'LanguageDirectory=jpn 'ProductName=programName 'DialogText= 'CaptionText= 'ErrorCaptionText= FxInstallerPath=. IEInstallerPath=. MSIInstallerPath=. MDACInstallerPath=. MDACVersion=2.7 .NetVersion=v1.1...
  16. lehuong

    Wireless connection from Palm to PC

    Hi all, Can we write a program to connect the palm with pc wireless? Here, I'm using either VB 6 or VB .net for coding? Thanks lehuong
  17. lehuong

    Double click to open a file

    Hi all, I have created a software "MySoft" by using vb .net. This software allows user to open, create and save data file like "Testing.hh". When I install the MySoft in a pc and double click the "Testing.hh" to open it, however it trigger MySoft to start up but the...
  18. lehuong

    Parse string to formula

    Hi all, Does anyone know how to parse a string to a formula like "A+B*(K-1)" into A+B*(K-1)? Thanks, lehuong
  19. lehuong

    urgent... please help to compile asp.net

    Hi all, When I compiled the asp .net in visual studio .net. My project was fine, however when I compiled by using the .bat file: Set indir=C:\myfile\mysite.vb Set outdir=C:\myfile\bin\mysite.dll Set assemblies=System.dll,System.Web.dll vbc /t:library /out:%outdir% %indir% /r:%assemblies% pause...
  20. lehuong

    How to make the gridtable have the scrollbar

    Hi all, I have created the gridtable on a tab in a form. When I added item into the gridtable it was ok untill I saw the scrollbar then when I added more item into it, it did not let me add. I saw the size gridtable did not grow. It seems like some thing limit the number of items in the table...

Part and Inventory Search

Back
Top