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

    Nested Classes, is it possible?

    Dear, I have 2 folders, one called DBDaccess and the other call BLS. Within each folder are a bunch of classes, for instance, Namespace BLS Public Class A Public Function A () -- end function public function B () --- End function ENd Class There about 4 classes and each applies also to...
  2. Ken011

    crystal reports and visual studio 2005 express edition

    Greetings again and thanks for all for your continued assistance. Question: I have been trying now to integrate Crystal Reports into my app but just don't know how to get started. I have been told it comes built in with visual studio 2003. However, since my visual studion 2003 is not...
  3. Ken011

    How do you hyperlink a pdf from from datagrid control?

    Hello again, all: So right now, using a datagrid, each pdf file is listed with its associated records: <asp:HyperLinkColumn HeaderText="<font color=white>PDF</font>" DataNavigateUrlField="filename" DataNavigateUrlFormatString="downloadTracker.aspx?id={0}" DataTextField="filename"...
  4. Ken011

    how can I insert line break into a TextArea control

    Greetings everyone, This is probably a cheap one, for that I apologize. I will like to insert a br into a textArea so that when I hit then return key, the next text begins on a new line. So far, everying is wrapping naturally which is fine but I want to be able to begin a new paragraph on a...
  5. Ken011

    Changing the default Data and Log Location

    Greetings, Can anyone please tell me how to move mdf and ldf files from C drive to H drive? Thanks in advance
  6. Ken011

    how do I confirm delete using datagrid control?

    Greetings, I am using datagrid control to insert, update, display and delete records. I am have a lot of success implementing all of the above. What I can't seem to get to work so far is confirming a delete before you actually delete. For instance, When I click the delete image, I would...
  7. Ken011

    using email components

    Dear all, I tried using the following code to send email. First, I was getting "unable to relay" message. Then I granted access to localhost (127.0.0.1). Now, I no longer get the error but I don't receive any emails. What am I doing wrong? Please see my entire code. THanks in advance...
  8. Ken011

    how do I select more than one value from checkboxlist?

    Greetings all again, I have a checkboxlist control shown below: <td> <asp:checkboxlist id="txtservice" runat="server" RepeatDirection="Horizontal" repeatcolumns="6"> <asp:ListItem Value="Seagull" Selected="False">Seagull</asp:ListItem> <asp:ListItem...
  9. Ken011

    how do you assign a fieldname current system date?

    Greetings experts. In classic asp, you would assign a field name system date like this: sql="insert into tableName (dateField) Values (#" & date()&"#) I am using MS Access database. How do you do the same us asp.net (vb)? The following isn't working for me: cmdcommand = New...
  10. Ken011

    How to display records in descending order

    Greetings (again) all. The code below displays records saved to various folders. It works fine except that records are sorted alphabethically by default. Is there anyway to sort the records by date in descending order: Thanks in advance. <% sub ListFolderContents(path) dim fs...
  11. Ken011

    Inserting records into the db using multiview

    experts, I have been going in circles with a project that was so very simple with classic asp but very challenging so far. I am using multiview control to pass values from one page to another page. By this, I mean that i have 2 views = view1, view2. Then there is a 3rd view, where all values...
  12. Ken011

    how to pass values from page to page

    greetings good experts. In classic asp, I would pass values via hidden form or query string. Can someone please show me how this is done in asp.net? I am using vb.net version 2.0 and I am working with vs.2003 So far, anything I tried has failed. I am trying to pass only 6 values from...
  13. Ken011

    I am having problem converting text to datefield

    I am trying to find out the correct format for assigning a date value to one of my form elements. I am getting the following error: "String was not recognized as a valid DateTime" with this code; objCommand.Parameters("@txttargetDate").Value = txttargetDate.Text I tried to replace the...
  14. Ken011

    Invalid Class error when running asp component

    Greetings experts. I have a mystery before me and i have no clues how to resolved them. each time i install a dll and register it on my local pc, when i run an application that is supposed to use this component, i *always* get "invalid class" error. This, as I understand it, means that the...
  15. Ken011

    I need to integrate FSO with my asp code, how?

    Hello again experts: I use the following code to unzip zipped files from one folder to another. It works well except that I can only unzip one file at a time. This is the code: <% Dim objZip Set objZip = Server.CreateObject("XStandard.Zip") objZip.UnPack "C:\myZippedFiles\rssfeed.zip"...
  16. Ken011

    scheduling a data extract- stumped

    hello experts: We have 2 remote servers. One hosts a sql server database and the other is an application server. They are both within the same firewall. We would like to set up that extracts data from the sql server database to an Access data ( from remote server to another). We would like...
  17. Ken011

    Trying to export data to excel but...

    The submit button is showing up in excel. Download Report, then <FORM style="display: inline;"> <INPUT Type=Submit Name="Excel" Value="Excel"> </FORM> I created a search page with certain search params. If you perform a search and there is a hit, the results of the search...
  18. Ken011

    Language translation software

    Can someone please tell me where to find the best and easiest language translation software? We would like to translate from english to spanish. Thank you very much as always.
  19. Ken011

    How do I properly format time?

    Hi everyone: How can insert : (colon) in time, while ensuring that the colon that currently exists doesn't get removed? What I mean is that we have users who use our application to process certain time-critical information. sometimes, they enter time as 930 (9:30) or 1100 (11:00). Some other...
  20. Ken011

    Inserting record in group batches

    Greetings experts: How can I modify this code so that it allows me to new records? Right now, it is over-writing existing records. Just a brief history: There are 5 categories, category 10, 5,3,2,1. Each category, with the exception of category 2, has 6 subCategories. The way it works...

Part and Inventory Search

Back
Top