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 SkipVought 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: hf28
  • Order by date
  1. hf28

    Calendar Control/SQLServer

    Hi everyone. I'm trying to build the calendar for the housing registration. When the user opens the calendar, it should show already not available (taken) days. this information should come from the SQL Server. Then the user can choose something from the available days, highliting those days...
  2. hf28

    Web Service

    I'm new in C# and Web Services. I have 2 different DB's, say A and B. "A" is the main one. I'll have to take data from the B and load it into the A. I've created a Web Service to read the data from the B. How can I insert the gotten data into A, using my Web Service? Thanks a lot in advance.
  3. hf28

    Parsing Error

    Hello everyone, I've created an empty Web Page, then tried to run it. I got an error: Description: An error occurred during the parsing of a resource required to service this request. Does anyone know what could cause this error? Thanks an advance.
  4. hf28

    crystal for web

    Hello everyone, I'm a Web programmer. I work with VS.NET. I got a project to build a Crystal report and show it up from my Web Page. I never worked with Crystal. How should I do it? Thanks alot in advance.
  5. hf28

    Menu Bar in ASP.net

    Good morning all. Does anyone know how to create a Menu Bar for ASP.Net Web applications? In VB.Net we have a control MainMenu. I didn't see anything like that for ASP.Net, or should I do it in JavaScript? Thanks a lot.
  6. hf28

    PDF reports using asp.net

    Good afternoon, Does anyone know how to create PDF reports, using ASP.NET? I have 2 buttons on my page: "Print in Excel format" and "Print in PDF format" I create Excel reports and it works fine, but don't know how to present my reports in the PDF. Thaks a lot in advance.
  7. hf28

    SelectedIndexChanged event for DropDown

    Thanks, guys. That's exctly what I'm doing: 1. Created a Generic function: 'Function to populate the specified dropdown. Public Function FillDropDownList(ByVal obj As DropDownList, ByVal sqlstr As String, ByVal bSelect As Boolean, ByVal strCacheName As String) 'First clear the...
  8. hf28

    SelectedIndexChanged event for DropDown

    Thanks, Isadore. I don't think it'll work in my case. See I already populated the first DD. The second one is just empty for now. The second one will be populated only if the Index_changed event happened in the first DD. It's a prebuilt Sub, but somehow, when I change the Index in the first...
  9. hf28

    SelectedIndexChanged event for DropDown

    Hello everyone, I'm facing an unexpected problem: I have a few DropDowns on my WebPage. I'm supposed to populate there values depending on the changes in the previous ones. For example, I have cboSchools. On the Page_load event, I populate the cboSchool. It works. Then on...
  10. hf28

    FTP WebSite

    Hello, Does anyone know how to FTP Secured WebSite, using VBScript? Thanks in advance
  11. hf28

    Problem with code to get to the web site at certain time

    Hello everyone, I'm new with VBScript. I got a task: 1. I'll have to get to the USPS Web Site 2. It will bring me to the Wizard, where I should provide UserName, Password, which will send me to the 2. Other page, where I'll have Zipped files (my final destination) 3. I'll have to Unzip...
  12. hf28

    Help with Web SErvices

    Thank you very much, dragonwell, I'll use Visual Studio. NET, but I never worked with WebServices, only developed applications Schematically, that's what I'll have to get. Everything should work without "HTML Interface", under scene + should be schedule for running once each 2 days. 1...
  13. hf28

    Help with Web SErvices

    Hello everyone, Does anyone know how to read the data from the 3d party Web Site, using Web Services? To get to that Web Site I'll have to use UserName and Password, which are given to me. Thanks a lot.
  14. hf28

    Connecting to the Secure Web Site programmatically

    Hello, Does anyone know how I could connect to the secure Web Site programmatically (not going to the site directly), if I know the UserName, Password and get the Info from that site. Is it possible to schedule the process, say, for once each 2 days. Thanks a lot in advance. Any help is...
  15. hf28

    To find if column exists

    Thanks. If you put column name in ' ' , it will bring the value. If you put it into " ", then it will be looking for a column, but will bring the same error.
  16. hf28

    To find if column exists

    That's the whole thing: IF EXISTS( SELECT _010 FROM SYSCOLUMNS WHERE OBJECT_NAME(ID) = 'tblSummaryStatus' ) BEGIN PRINT 'Good column' END ELSE PRINT 'Bye' Now, it gives me an error : invalid column name '_010' though this column exists. If I say "Select 010 from...
  17. hf28

    To find if column exists

    Thanks, Bill Yes _010 is the column name I did like you and Claire said IF EXISTS(SELECT _010 FROM SYSCOLUMNS WHERE OBJECT_NAME(ID) = 'tblSummaryStatus') Brings the same error
  18. hf28

    To find if column exists

    Thanks a lot, Claire. I did it like this, but it didn't work. if exists (select _010 from syscolumns where id = object_id(N'[dbo].[tblSummaryStatus]')) It gives "Incorrect syntax near ')'" Error
  19. hf28

    To find if column exists

    Hello everyone, does anyone know how to write a query to find out if the column exists in the table? I tried: if exists (Select ColumnName from Table) but it doesn't work. Thanks for your help
  20. hf28

    Unzip files asp.net

    Hello everyone. My question is about "unzipping" and then saving files, using ASP.NET. I get a big number of the zipped text files. So, my goal is to unzip them and save in some folder. Then I can use those text files to update the DB. Does anyone know how zip/unzip works with...

Part and Inventory Search

Back
Top