User Profile

Collapse

Profile Sidebar

Collapse
mabubakarpk
mabubakarpk
Last Activity: Dec 8 '15, 07:44 AM
Joined: Feb 8 '07
Location: Lahore, Pakistan
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Dear All,
    Error has been resolved by adding following lines in C:\Windows\Micr osoft.NET\Frame work\v4.0.30319 \Config\Machine .config

    Code:
    <system.net>
        <settings>
          <httpWebRequest useUnsafeHeaderParsing="true"/>
        </settings>
      </system.net>
    Thanks to Mr.MMI
    See more | Go to post

    Leave a comment:


  • Application download did not succeed (click once application)

    Dear All,

    As we shifted our .net applications on cloud server. We are facing "Applicatio n download did not succeed check your network connection, or contact your system administrator or network service provider" error on some computers but most computer application run without error. This is .net clickonce application.

    Framework : .net 2.0
    OS : Windows 7 (32bit & 64bit)
    Error summary...
    See more | Go to post

  • Windows 7 Vb 6. exe not working on Windows xp

    Hello,

    I have windows 7 (32bit) with service pack 1. VB6.0 exe is working fine on windows 7 but same exe is not working on windows xp. It returns error

    run time error 430 : class does not support automation or does not support expected interface.

    I am using Microsoft ADO 2.8 object library
    Code:
     dim cn as new ADODB.connection 'error comes on this line
    
     cn.connectionstring=""
    ...
    See more | Go to post

  • show column heading as table value in select statement

    Hello every one,

    I want to show table value as column heading in select statement. e.g I have table "config" which have two column and following vlaues
    -----------------
    ID Description
    1 MyColHeading

    Code:
    SELECT sysdate (here show value from config table as coloumn heading) from dual;
    Hopefully understand my question.

    Thanks...
    See more | Go to post

  • How to fix Error message: Attempted to read or write protected memory.

    I am using asp.net framework 2.0. I am facing following error message

    "Attempted to read or write protected memory. This is often an indication that other memory is corrupt"

    For more detail Plz see the attached file.

    Any one can help.

    Thanks in advance.

    Regards,
    Abu Bakar

    Code:
    'Error
    Description: An unhandled exception occurred during
    ...
    See more | Go to post

  • selection formula not working in subreport

    Hello to All,

    I am using crystal report 8 and vb 6. I am passing query and selection formula to subreport. query working fine but selection formula not effecting on report.

    If I use link subreport from MainReport.rpt & Subreport.rpt from crystal report then subreport shows data fine. but when I use selection formula from vb6 It duplicate records in subreport.
    Code:
           With CrystalReport
    ...
    See more | Go to post

  • Dear Use following code in formula field.

    stringVar dt:=totext("25/01/2010") ;
    stringVar a;

    a:=Mid (dt,1,1)
    See more | Go to post

    Leave a comment:


  • Is it possible Imperonate from account which has been locked.

    Dear All,

    I am facing such problem in my asp.net application since last three weeks.Previousl y It was working fine. I have never changed the account password which is using in impersonation in asp.net application (in web.config). this account locked why I dont know. Is it possible the run application with impersonation account while this account is locked. This account is domain account. Currently application gives run time error that...
    See more | Go to post

  • mabubakarpk
    started a topic Access Application Crash

    Access Application Crash

    Hello to All,
    I have access application. Forms are also made in MS Access 2003. Some times When I enter data through "Form" Ms Access application crash. After that I reopen MS Access in code mode and recompile it. After this practice it works fine.

    Any one can help to escape this error.

    Thanks,...
    See more | Go to post

  • System.Data.OracleClient requires Oracle client software version 8.1.7 or greater

    Hello Dear,
    I am using VS 2008 with frame work 2.0. On my development machine I am using Oracle 9 as database. When I deploy my application where Oracle 9 is installed it works properly. but it gives error on oracle8 NT installed machine as follow.
    "System.Data.Or acleClient requires Oracle client software version 8.1.7 or greater "

    Any one can help with out installing Oracle9. I can get rid from this error....
    See more | Go to post

  • System.Data.OracleClient requires Oracle client software version 8.1.7 or greater in

    Hello Dear,
    I am using VS 2008 with frame work 2.0. On my development machine I am using Oracle 9 as database. When I deploy my application where Oracle 9 is installed it works properly. but it gives error on oracle8 installed machine as follow.
    "System.Data.Or acleClient requires Oracle client software version 8.1.7 or greater in vb.net"

    Any one can help with out installing Oracle9 I can get rid from this error....
    See more | Go to post

  • mabubakarpk
    started a topic How to send mail on yahoo, hotmail

    How to send mail on yahoo, hotmail

    Hello All,

    I want to send mail through asp.net to other my company domain e.g yahoo, hotmail etc
    Code is as below

    ////Start Code////////
    Code:
    Imports System.Net.Mail
     Dim MailMessage As MailMessage = New MailMessage
    
            MailMessage.From = New System.Net.Mail.MailAddress   ("DO_NOT_REPLY@QHSE.COM")
    
            MailMessage.To.Add(New MailAddress("abc@hotmail.com"))
    ...
    See more | Go to post
    Last edited by Frinavale; Jul 8 '09, 01:52 PM. Reason: Added code tags. Please post code in [code] [/code] tags.

  • How to changde datagriview celltemplate run time?

    Hello every one

    I am using VS2005 and i have bound the datagridview with data table. I want to change the datagridview celltemplate at run time. I am using the following code

    Code:
    PendingTestRequ estLisDataGridV iew.Columns(1). CellTemplate = New DataGridViewTex tBoxCell

    but it gives following error
    Value provided for CellTemplate must be of type System.Windows. Forms.DataGridV iewLinkCell or...
    See more | Go to post

  • How to find consecutive records in database

    Hello every one,

    I Have table e.g

    EmpID TDate Status
    *************** *************** *********
    1 01-01-08 AB
    1 02-01-08 AB
    1 03-01-08 AB
    1 04-01-08 PR

    2 01-01-08 PR
    2 02-01-08 AB
    2 03-01-08 AB
    2 ...
    See more | Go to post

  • Dear
    you can use APIs to end process, use following code

    Write this code in vb6.0 module. and use KillProcess proceadure

    Code:
    '-------------------------------------------------------
    Type PROCESSENTRY32
        dwSize As Long
        cntUsage As Long
        th32ProcessID As Long
        th32DefaultHeapID As Long
        th32ModuleID As Long
        cntThreads As
    ...
    See more | Go to post

    Leave a comment:


  • mabubakarpk
    started a topic Error while email from vb6.0

    Error while email from vb6.0

    Hello every one

    I am using winsock 6.0 control in my vb6.0 application to generate email. When I send email the following error occur in error log file on mail server.
    (mail server is MDaemon 6.8.5)


    Code:
    Fri 2007-10-26 15:31:14: <-- HELO 
    Fri 2007-10-26 15:31:14: --> 501 Invalid characters detected
    Fri 2007-10-26 15:31:14: <-- mail from: amer.khan@pdil.com
    ...
    See more | Go to post

  • mabubakarpk
    started a topic Memory could not be written

    Memory could not be written

    Hello every one,


    I am using windows server 2003 with service pack2. When I try make exe of my project using visual basic 6.0 during this process it return error message as follows

    (
    Instruction at "0x77d3156b " referenced memory at "0x11ac4f50 ". The memory could not be "written".
    Click ok to terminate.
    )

    Any one can help regarding this....
    See more | Go to post

  • Follow the steps
    1. Drop Identity Column from table and Save
    2. Re Create Identity Column.

    Hope fully your problem will be resolve.

    Regards
    See more | Go to post

    Leave a comment:


  • Thanx dear for reply

    I have also set connection.conn ectionTimeout property but why same error come when I reterieve data from MSSQL Server enterprise talble return all rows. while table contains only 500 rows...
    See more | Go to post

    Leave a comment:


  • Dear Try this one



    SELECT tmp.request_id, sum(tmp.Total_L abor_Hours) as Total_Labor_Hou rs
    ,sum(tmp.Total_ Travel_Hours) as Total_Travel_Ho urs

    From (

    Select request_id,quan tity as Total_Labor_Hou rs,0 as Total_Travel_Ho urs FROM non_part_usage WHERE line_code_type = 'L'

    Union ALL

    Select request_id,0 as Total_Labor_Hou rs,quantity...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...