Search results for query: *

  • Users: fpineda101
  • Content: Threads
  • Order by date
  1. F

    Problems with Pagesettings (PrintDocument)

    Here is my code... private bmp as bitmap Private Sub GridDetail_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridDetail.Click bmp = getsnap(GridDetail) 'PrintDocument1.Print() PrintPreviewDialog1.ShowDialog() End Sub Private Function getsnap(ByVal ctrl As...
  2. F

    Stored Procedure - filename

    I'm trying to store filenames into a database and then upload the file to the server. First step of this process is storing the filename. Below is my code. An error is thrown saying something like file is going to be truncated. sqlINS.Parameters.Add(New SqlParameter("@ObjectiveFile"...
  3. F

    SQL 2000 File Uploads

    What data type do I use in SQL Server 2000 Developer for file uploads? Thanks!
  4. F

    SQL Connection problems...

    knsdaknfklsanfkl;ndsg
  5. F

    Need good/cheap or free date control for web forms

    Any good date/calendar drop down type controls that are free/cheap for web forms ASP.NET v1.1.? Thanks for any help!
  6. F

    Any good PayPal articles out there?

    My client wants to integrate PayPal into his site. I downloaded the SDK and the sample code. For the sake of time, I was wondering if there is an article that is easy to understand and quick to help me accomplish what I want. Thanks for your help
  7. F

    SQL query with Truncate and %

    I'm trying to get the time remaining from a 7 day auction. There is a timestamp (datecreated) which has 7 days added to it. I want to find out how much time remains in days, hours, minutes and seconds when a page is refreshed... This is what I have so far. It tells me there is a error...
  8. F

    Calculating time remaining

    I am writing a function that returns the time remaining in an auction. The database part is fine, my problem is the calculation of days, hours, minutes and seconds remaining. Below is my code... Public Function GetTimeRemaining(ByVal inItemNum As Integer) As String Dim endDate As Date Dim...
  9. F

    Find time remaining from Date in database

    I would like to know how to Select a date from a DB and then subtract Now or SYSDATE(Oracle DB) from the Selected date to display time remaining similiar to an ebay auction. Please help! Any advice is appreciated
  10. F

    Free eval or anything free for .Net reports

    Are there any free evals or just flat out free reports that can integrate with .Net? If so, please provide a link to download and a link to any tutorials. Much thanks!
  11. F

    Any tutorials on Reports for Access?

    Can someone provide me a link to a good tutorial on Reports for Access? Your help is appreciated...
  12. F

    ADO.NET Access Insert command error

    Looking at some of the previous posts, I decided to try a suggestion of tech gnome to get the full error description. Below is what I got... --------------------------- --------------------------- System.Data.OleDb.OleDbException: Syntax error in INSERT INTO statement. at...
  13. F

    ADO.NET Update into Access DB

    Hello I'm coding this project which is supposed to be a mock ATM. The screen of the ATM is a label. I'm using the datareader and oledbcommands for the select. I am able to authenticate a user with their account no and pin. What I want to do is update the balance of the account and insert...
  14. F

    Can Triggers be coded into Access?

    I've done most my work in VB6, Oracle and ADO. In learning ADO.net, I'm using Access db. For a project I'm working on, I would like to know if there is a way to code a Trigger into Access, like in Oracle.
  15. F

    Formatting Date ala VB6

    I am trying to create an ATM system that gets the last 5 transactions and displays them. I am using Oracle as the DB. This is the code I have... -------------------------------------------------------------------- SQL = "SELECT * FROM transaction WHERE account_number = '" &...
  16. F

    How to program a web browser

    Can some point out a good tutorial on how to make a web browser from VB.Net? Much Thanks!
  17. F

    Tab for formatting strings?

    Is it possible to use a tab character like \t for formatting strings? I'm trying to align two columns of text on a label (using the same string). I know how to do the new line in .Net so I got that covered. Thanks for you help! A sample of what I'm trying to do... Public newLine =...
  18. F

    Custom Icon for the Exe file

    Is there a way to use a different .ico file for an executable's icon? How do I set that? Please help
  19. F

    Creating Executable Files

    I'm new to dotnet (Still on VB6 at my work). I don't understand how to make an executable file from a dotnet project. Some enlightenment please? I read something about DLL's but I have no idea how that works...
  20. F

    ADO RecordSet RecordCount Property

    ADO RecordSet RecordCount Property - Resolved I'm trying this function for a school project. I'm not sure if I am using the correct property. The recordcount property keeps returning as -1 (which probably means False). I test for < 0 in an IF statement and it fails every time. I verified that...
Back
Top