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

    How to override WebRequest

    I need to override WebRequest to create a custom class to upload files using ftp protocol, since I have VS .Net 2003 and it doesn't support framework 2.0 which provides FtpWebRequest class. Does anyone have any idea how to do this? There's a link on microsoft website to create a pluggable ftp...
  2. vatawna

    How to upgrade Visual Studio .Net 2003 for framework 4

    My Visual Studio .Net 2003 ties with .Net Framework 1.1 at installation. I can't use FtpWebRequest which needs at least framework 2.0. I went through upgrading studio by going to Add/Remove Programs, then clicking on Change/Remove studio to get to the studio setup window, then Repair/Reinstall...
  3. vatawna

    How to catch a button event inside datagrid nested inside repeater

    I have a datagrid nested inside a repeater. Does anyone know how to catch an event on an imagebutton inside datagrid? Example: <asp:Repeater> <ItemTemplate> <asp:DataGrid> <Columns> <asp:TemplateColumn> <ItemTemplate> <asp:ImageButton> Thanks.
  4. vatawna

    How to generate running total for a group of running totals

    I'm using Crystal Report 9. The report is grouped by exam date and then by doctor. I have running total (A) for each doctor to show how many exams they have done on each exam date. In the report footer, I want to show how many exams each doctor has done in the period specified in Record...
  5. vatawna

    Weird characters on report

    There're weird characters on my report when I open it for edit on Crystal Reports 9. Does anyone know how to fix this? Thanks.
  6. vatawna

    Outlook calendar

    Due to the time change last Sunday, I unchecked the setting for "Automatically adjust clock for daylight saving changes" on all computers at work. The reason we wanted to do this is that all computers would pull the correct time from the firewall rather than having me to change the time...
  7. vatawna

    how to show data on a mouseover

    I have an image that when being moused over, it needs to show a little window which shows some data. For example, if the mouse is over the image of "Top 25", a window will pop up showing the top 25 physicians's names, ids, etc. If the mouse is over the image of "Top 50", the window will show...
  8. vatawna

    how to group data into weeks

    I'd like to group data into week1, week2, week3, and week4 for each month. For example, if the report was processed on 2/5/07, the data should be in week1. If it was processed on 2/12/07, it should be in week2. Does anyone know what formula or function would help me do this? Thanks.
  9. vatawna

    how to program a download feature

    I need to create a webpage that allows users to download some files. I know how create a button, but I'm stuck from there. Once a button is clicked, the files need to be downloaded to the user's machine. Can anyone show me how to do this? Thanks.
  10. vatawna

    how to receive arguments passed from a windows service

    I have a windows service that listens to any data coming on port 8001. If data is received, it will activate an application and pass along a string that came on that port. I use Process.Start(file path, argument) to activate that application. But I don't know how to grap the argument in the...
  11. vatawna

    error connecting to another workstation via TcpClient

    I created an object client = new TcpClient() Then try to connect to another workstation via client.Connect(System.Net.IPAddress.Parse("192.168.1.3"), 1000); I got the error message "No connection could be made because the target machine actively refused it". My and the other workstation are...
  12. vatawna

    Threading.Timer doesn't work

    I try to schedule a job to run every 30 mins, as follows: --- System.Threading.AutoResetEvent autoEvent = new AutoResetEvent(false); StatusChecker statusChecker = new StatusChecker(); System.Threading.TimerCallback timerDelegate = new TimerCallback(statusChecker.CheckStatus)...
  13. vatawna

    how to send data to a .pdf file

    I have a web-based form written in ASP.NET with VB on the backend for users to fill out. After the form was filled out, I'd like to have the data entered by users sent to a .pdf file for confirmation. Does anybody know how to send data from ASP.NET/VB to a pdf file? Thanks.
  14. vatawna

    How to display a list of directories and files

    Hello, Does anybody know how to populate the combo box control with directories and files starting from the top level "My Computer"? In other words, the combo box control actually shows a tree of directories and files when it is dropped-down. Thanks, Mimi
  15. vatawna

    Error executing the ExecuteNonQuery command

    I have the following simple code: Private ConStr As String = "Provider=Microsoft.Jet.OleDb.4.0;Data Source=" & Server.MapPath("\someDatabase.mdb") Private Sub Page_Load(Sender As Object, E As EventArgs) Handles MyBase.Load ' Response.Redirect("home.html") Dim Con As New...
  16. vatawna

    How to retrieve IP address

    Does anyone know how to retrieve the IP address of the computer accessing my website? Thanks.
  17. vatawna

    Error generating data for a subreport

    I'm using CR9 and SQL Server 2000. The main report and the on-demand subreport are grouped by: 1. Yearly 2. Quarterly 3. Monthly 4. Date 5. Department 6. Resource Each one of the groups above is a formula. The main report is thus linked to the subreport based on those groups. The problem...
  18. vatawna

    How to add a custom desktop icon

    Does anyone know how to add a custom icon to a c# project, so that after it is packaged then users install the application, the custom icon (instead of the default one) will be displayed on desktop? Thanks.
  19. vatawna

    How to insert a carriage return into a textbox

    Hi, I use "\n" to add a carriage return to a string, and then assign that whole thing to the text property of the textbox control as follows: txtMessage.Text = "\n" + someString; The problem is the textbox shows a square and the string. Does anyone know how to insert a carriage return to...
  20. vatawna

    How to fax a text file from a c# program

    Hi, Can anyone point me to the right direction as to how to write code to fax a text file from a c# program? I don't know how to begin. Besides Outlook or MS Fax Service, what other fax service I can use with my program without having to purchase a 3rd-party component? Thanks.

Part and Inventory Search

Back
Top