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 TouchToneTommy 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: *

  1. AndreAraujo

    dataset. has changes problem

    hi everyone, i have a form that is binded to 2 datatables in the same dataset. i need to determine if tha values where changed when i move to the next record or when leave the form. I use the DS.haschanges but i get haschanges= true when i move to the next record but the data was not changed...
  2. AndreAraujo

    select if not null

    Hi, i have this stored procedure to return only values that are not null CREATE PROCEDURE list_serie AS SELECT Num, Line, case Serie (isnull(serie,'') then '' else 'serie:' + serie, case Ref (isnull(ref,'') then '' else ' ref:' + ref, case Marca (isnull(marca,'') then '' else 'marca:' + marca...
  3. AndreAraujo

    report Keep asking for parameter value

    Hi, im creating an Crystal report in VB.net , i use 3 Sql stored procedure with parameters, my problem is that i pass the parameters values, but the report continue to ask me for the value for that parameter. This is tha code i use in load event inthe form that contains the ReportViewer...
  4. AndreAraujo

    problem with currency values

    hi everyone, im having some problems performing operations to get currency values. the result total and desc returns a strange value. if total = 1 * 74.80 the total is 74.80D dim total, desc as decimal total = (txt_quant.Text * txt_unit.Text) desc = ((total * txt_desc.Text) / 100) Any ideas...
  5. AndreAraujo

    perform a operation in stored procedure

    Hi, i´m having some problems in a stored procedure. i need to calculate a numeric value @parametro declare @parametro numeric (11,0) , @ano int select @parametro=max(id) from tbl__cabecalho where id_lab=1 set @ano= (@parametro/10000000 ) if @ano = year(getdate()) begin set @parametro...
  6. AndreAraujo

    combobox in Datagrid wont show DisplayMember

    Hello, im new to .net, im using a windows form with a datagrid, in that data grid i display information about my costumers, id, Name, Country, pay method, pay conditions, .. I´m using a DataGridComboBoxColumn to display not the code of the country (table Costumers) but the name of the country...
  7. AndreAraujo

    b2d name

    Hello, I run a diff b2d every day and Full at weekend, then backup the file to tape, the problem is that the b2d file is overwrited but keeps the same label ,so the catalog refers to the same b2d file , is there a way to create a diferent b2d label every day and delete/erase the day before? i...
  8. AndreAraujo

    Hold code execution

    Hi, I'm a having a problem with 2 reports, i have to print 2 reports , but the users need to preview the first report and print, and only then see the preview of the second report. Is there a way to hold the program until the print of the first report???? Thanks in advance André Araujo
  9. AndreAraujo

    Not read Notification

    Hello Everyone, a user in my Office keeps receaving a deleted without being read notification and those mails whore read, the notification arrives about 2:00Am, Ghoosts??? :) The workstation that sends the email is using Office 97 and Win NT with SP6 , the workstation that send's the...
  10. AndreAraujo

    install New server

    Hello everyone, I have 4 Servers with NT, recently my PDC failed and was replaced by a new machine with Win 2000 server. The BDC was promoted to PDC and the new server was instaled as a stand-alone. Now i need to promote this Win 2000 server to DC, i have to install Active Directory using...
  11. AndreAraujo

    Install new PDC

    Hello everyone, I' m having some questions about 2000 server. i have 6 Nt 4 Servers , recently the PDC was replaced, the new server has the Win 2000, the bdc was promoted to PDC during the time the server was off line,the client installed the server as a stand alone server,Now i need to...
  12. AndreAraujo

    Label loses format

    HI, I´M HAVING A PROBLEM WITH A LABEL. THIS LABEL IS FORMATED AND THE SPECIFIC PRINTER IS DEFINED, IN WIN98 AND NT THE LABEL IS PRINTED CORRECTLY , BUT IN XP THE THE MARGINS ARE CHANGED. THE PRINTER IS AN ELTRON, I TRIED TO FORMAT THE MARGINS WHEN I OPEN THE LABEL USING CODE,BUT WITH NO RESULTS...
  13. AndreAraujo

    How to contol Events order

    Thanks for taking time to read this. My application has one main form with a sub form on it. When i add a new record in the main form using the code; Private Sub cmdAdd_Click() Dim Rst As Recordset Set Rst = Me.Recordset Rst.AddNew '********************** me.Num = NovaOrdem()...
  14. AndreAraujo

    duplication Problem ?????

    Hello, I'm having a very strange problem, in a Win98SE machine i cant write some characters combinations like â ã è , when i press ~ ^ ´ ` i get ~~ (duplicates the character) , i changed the keyboard, the Regional and Keyboard setting are ok, no Virus found . Thanks in advance. Andre
  15. AndreAraujo

    Refresh Form

    Hello, I'm some problems with a form and Sub-Form. I have a sub form that gives me the status of a line of process(one process can have several lines), Open , Cancel, reactivate, Terminated, and other informations about that process, in the min form i have a text box that do the reading of the...
  16. AndreAraujo

    Table Question

    Hi everyone, i'm new im DreamWeaver and i´m creating a peersonal web Page. I'd like to know if it's possibel to open a new page inside the current page using only tables, i know it's possible using frames. Thanks .
  17. AndreAraujo

    Report Code won´t run

    Hi, I have report that as some code associated to the detail onPrint event, this report is grouped by Client ID and in the detail e process all the documents for the client in header, so far no problem , but some record arent correct processed by the code, in the querry they have the correct...
  18. AndreAraujo

    Cant see my disk HELP URGENT

    Hi, I hve a server with 3 disk, ona of the disks was replaced,i installed a new disk im my PC, when booted i couldnt see the disk in Explorer and i run Disk Administrator, i think i changed the signature of the 2nd disk and now a cant acess to that disk. The disk is not visible in explorer and...
  19. AndreAraujo

    Problem installing Shared Printer

    Hello everyone, I have a printer instaled in a Nt Workstation, this printer is shared , with full controll to Everyone,but when i trie to instal this printer in my other machins i get no error but the printer is installed in port LPT1, and i cant print, i tried to change the port but i cant't...
  20. AndreAraujo

    Findfirst runtime error 3437 and 3426

    Hi, in have a combo box that is used to find the record that is displaid in the form, in the afterupdate event of that combo i get the error runtime error "3437 Database has been placed in a state by User ..." and some times the error "3426 This Action was Cancelled by an...

Part and Inventory Search

Back
Top