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

    Unable to connect to sql server (local)

    I'm trying to connect my report to an MSSQL server but i get an error, "Unable to connect to sql server jeffrey" (Jeffrey is the name of my computer where my sql server is running)... what could have been possibly wrong... pls help... i don't know what happen becoz i created this report in the...
  2. JeffSabat

    cross tab summary

    in cross tab summary, group options, a row will be printed for each week, why is it that it only displays 5 days record and not 7 days? how can I make it 7 days.... pls help.....
  3. JeffSabat

    Com+ Deployment using client/server architecture

    I have an application that uses com+ architecture. The idea is, a user from a different place will connect to a MSSQL 2000 database using dial-up internet connection by setting the datasource to the ipconfig of the system where the database resides. However, it won't connect as nothing is...
  4. JeffSabat

    passing parameters in subreport

    anyone who knows how to pass a parameter value in the subreport... i launch the report in VB.net using reportdocument object. below is my code in lauching the report with name RptNAme with a parameter ParamName... my problem is in this report there is a subreport say SubRptName with a parameter...
  5. JeffSabat

    total record count

    this is what i want to do. I created a text wherein it will display when there are no records found so i created a formula in the suppress object button. my problem is what would be the formula. I've tried the formula 'recordnumber=0' yet the text still displays even if there are records found...
  6. JeffSabat

    OLEDB Connection Cannot Connect

    Imports System.Data.OleDb Imports System.Data Public Class clsDataAccess Inherits ServicedComponent Private Shared gstrConnectionString As String Private mobjConnAccess As OleDbConnection Public Function DARetrieve(ByVal SqlCmdTxt As String) As DataSet Dim...
  7. JeffSabat

    mscomm license

    i have a class that use mscomm control, however it creates an error "class is not license for use".. help,what shoud i do? Private MSCOMM1 As New MSCommLib.MSComm
  8. JeffSabat

    @@identity vs @@ident_current

    we have just a little discussion in the ofc with @@identity vs @@ident_current... it's like this, i have a stored procedure define as.. CREATE PROCEDURE [uspInsertData] @FldName varchar(1000), @FldValue varchar(1000), @tablename varchar(100) AS declare @sql varchar(8000) set @sql = @sql +...
  9. JeffSabat

    query the last autonumber in the table during insert

    Help, pls... i have a program that uses mssql for its database.In my program, i use a stored procedure to insert a datarow in the database wherein the stored procedure also returns the Last Identity number of the row being inserted. Now, I am converting the database to Access however, there are...
  10. JeffSabat

    Help On Stored Procedure

    Why is this not possible? CREATE PROCEDURE [uspInsertNotes] @OwnerID varchar(50), @Subject varchar(50), @Notes ntext(16), @DateCreated varchar(50), @CreatedBy varchar(50), @tableName as nvarchar(256) AS INSERT INTO @tableName (OwnerId,Subject,Notes, DateCreated, CreatedBy) VALUES (@OwnerID...
  11. JeffSabat

    help on flash

    my program use flash for its menu, however, when i install it on another computer, the menu won't show... what could have been the reason for it? the ocx use for the flash has been included in the installation which is the plugin.ocx... is there any thing else which should be included... please...
  12. JeffSabat

    Creating installer

    Help... I am creating an installer for my vb program using the MS visual studio 6, tools, package and deployment wizard. The problem is it only creates the folder "support" and the folder contains nothing. I tried it with other PC's and it successfully creates a set-up package however...
  13. JeffSabat

    Printing Picture using printer object

    i am developing a program that will print a picture to the card... my problem is i can't get the picture printed exactly to the printer. i use this command... Printer.PaintPicture Form1.Picture1, 0, 0 picture1 is the exact size i want it to be... however, the printed one is smaller in size...
  14. JeffSabat

    width of a char...

    How will I know the width of a character? i'm creating a program that prints characters to a form using the Printer object and i want to position the text at the center of the form. The solution i am trying to create is by computing its width but how will i know the width of the character as...
  15. JeffSabat

    Displaying Report Header

    How will i design my report such that the report footer is at the buttom of the page? I'm using version 8.5. tnx a lot.
  16. JeffSabat

    How to detect operation time-out in mscomm control

    where will i place my error checking when there is no terminal connected to comm port?(ex. my program didn't receive any response since there is no power in the terminal) pls help... tnx
  17. JeffSabat

    How to know # of bytes receive using mscomm control

    first of all i would like to say this site is really a help. my problem is how will i know how bytes the control actually recieve. my program sends bytes to a terminal as commands and then the terminals sends bytes as response. so far, my program works because initially i know how many bytes i...

Part and Inventory Search

Back
Top