Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

salaikumar

@salaikumar
About
Posts
22
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Publishing application with Crystal Report
    S salaikumar

    Check whether all the crystalDecisions Dll files are included in the setup..

    Salai

    Visual Basic csharp help visual-studio question workspace

  • How can I use a VB.NET function in a crystal reports "Details" section?
    S salaikumar

    If you can access the Amt field in crystal report, then create a formula with some name, and go to edit(formula editor). Write the logic there.. like if Amt = 1 then "One" else if Amt = 2 then "Two" else Cstr(Amt)

    Salai

    Visual Basic question csharp asp-net database

  • Fetching SQL Query written in Crystal reports
    S salaikumar

    Hello... I am in need of fetching the sql query written in the crystal report. Is there a way to get it from VB.net/C#.net ???

    Salai

    Visual Basic csharp database question

  • Crystal Report Number Field Formatting
    S salaikumar

    Mika.... Thanks it worked fine... Thank you so much

    Salai

    .NET (Core and Framework) question

  • Crystal Report Number Field Formatting
    S salaikumar

    Hello I have a column in crystal report which can display both float values as well as integer values... Using formatting i set the decimal notation as 000.000 it is working fine for float.. but for integer values also it displays decimal part (like 5.000) I want it to be displayed like an integer 5 Any options available in reports/?? Thanks in Advance...

    Salai

    .NET (Core and Framework) question

  • Value was too large or small for a decimal
    S salaikumar

    Thanks Dave.. When I tried with double, it returns error for other columns..(Since it is a generic function). Atlast I handled this problem by having a try catch with over flow exception and replaced this value with zero to display in reports since this value is very small.. Thanks for your concern to reply.

    Salai

    .NET (Core and Framework) help csharp database oracle question

  • Value was too large or small for a decimal
    S salaikumar

    Thanks Dave... I understud... Is there any other method to handle this data.. The datatype of that column in Oracle is Binary_FLoat. While oracle can store that data why cant .Net access that data??.. I tried with Rdr->GetData Rdr->GetDecimal Rdr->Getint16,32 Rdr->GetDouble Rdr->GetFloat etc.... Nothing works...

    Salai

    .NET (Core and Framework) help csharp database oracle question

  • Value was too large or small for a decimal
    S salaikumar

    Yaa I tried.... tried all the methods supported by the OdbcDataReader...

    Salai

    .NET (Core and Framework) help csharp database oracle question

  • Value was too large or small for a decimal
    S salaikumar

    Hi... I have a value in oracle DB like "3.50324616E-38".. when I read this value from db in Vc.net using odbcDataReader I get an error like "Value was too large or small for a decimal".. The error is encountered in thi line varname = RdrIns->default::get(row+icnt) ; i tried many methods of Datareader..like .Getint32, GetInt64 GetDecimal etc.. no use any help.???

    Salai

    .NET (Core and Framework) help csharp database oracle question

  • Data providers List in combo box
    S salaikumar

    Hi all In C#.net or vc++ .net windows application, I want to have a list of data providers(like Microsoft OLE DB Provider for SQL Server,Microsoft OLE DB Provider for Oracle,Microsoft Access etc) in a combo box. So that I can connect to any database...How is it possible.... please help salai

    Salai

    Visual Basic database csharp c++ sql-server oracle

  • Web Search in .Net Application
    S salaikumar

    Hello I need to develop a tool which can search all the news about my company in web. The system will open that page and save the contents in a file. Cany one give some idea of how i can implement this.. Is it possible to integrate any search engine in our application. Pls help me Kumar

    Salai

    Web Development csharp help announcement

  • CD Burning using IMAPI
    S salaikumar

    Hello... There is a requirement of burning data into a CD from my application which i developed in VC++.net I tried to use Imapi.h related functionalities. but its not in my XP SDK.So i used another dll file(acclImapiWrapper.Dll) which i downloaded from the website... http://www.vbaccelerator.com/home/NET/Code/Libraries/Writing\_CDs/IMAPI/article.asp Using this dll file i tried the following code... try{ DiscMaster* DM ; SimpleDiscRecorder* sRecorder ; DiscRecorders* DRs; ` DiscRecorder * DR; DM = new DiscMaster(); sRecorder = DM->SimpleDiscRecorder; DRs = DM->DiscRecorders; int i,cnt; cnt = DRs->get_Count() ; for (i=0;iDiscRecorders->get_Item(i); } DR->OpenExclusive(); DR = DM->DiscRecorders->get_Item(0); Cursor::Current = System::Windows::Forms::Cursors::WaitCursor ; if (sRecorder->HasRecordableDrive()) { //sRecorder->Burn(this->Handle); DM->RecordDisc(true,true); } MessageBox(0,"CD Burning completed successfully","CD Burning",0); Cursor::Current = System::Windows::Forms::Cursors::Default ; DR->CloseExclusive(); sRecorder->Dispose(); DR->Dispose(); DM->Dispose(); }catch(COMException* e) { e->Message; } The data is staging on CD but burning Cd is not successful.. Could any one help me out?? Regards Salai

    Salai

    .NET (Core and Framework) csharp c++ com help question

  • VC.NET application installation
    S salaikumar

    i have developed one small application in vc++.net. when i install this software in any other machine, is it required that the client system should have .Net Framework installed.?? Thanks and regards Salai

    Visual Basic csharp c++ dotnet question

  • Datatypes in Crystal Reports
    S salaikumar

    Does Crystal Report XI Supports the BIANRY_FLOAT datatype of Oracle10g?? I tried, its not supporting.....Can anyone help in this regard.... Salai

    Visual Basic help question

  • MSChart OCX in VC++.NET
    S salaikumar

    Hi I am using MSchart control in vc.net... my program goes like this... double ChartArray __nogc[50][2]; { ...... ChartArray[k][1]= k; ChartArray[k][2]=mse; ...... } axMSChart1->set_ChartData(System::Convert::ToString(ChartArray)); //axMSChart1->ChartData = System::Convert::ToString(ChartArray); when i assign the array to Chartdata, i encountered an error "An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in axinterop.mschart20lib.dll Additional information: Bad function argument" Could anyone solve this problem Thanks in advance Salai

    C / C++ / MFC help csharp c++ data-structures

  • cannot convert target type - VC++.NET
    S salaikumar

    Hello i am using datagrid control in Vc++.net. when i set a float value to a cell, it returns the fol error. my code is *********** Datagrid->set_Item(1,1,System::Convert::ToSingle(textBox1->Text) ); Error ******** error C2664: 'void System::Windows::Forms::DataGrid::set_Item(int,int,System::Object __gc *)' : cannot convert parameter 3 from 'float' to 'System::Object __gc *' The datagrid columns are of float type. otherwise if i use toString function, Datagrid->set_Item(1,1,System::Convert::ToSingle(textBox1->Text) ); it compiles well but, returns runtime error, cannot convert from target type to primitive type.. Pls help me Salai

    C / C++ / MFC help csharp c++

  • round off function in vc.net
    S salaikumar

    hello How to use round funcion in vc++.net ...?? I need to round off a float value, say 103.94568 to 103.95 Please help.... Salai

    C / C++ / MFC csharp c++ help tutorial question

  • Datagrid column backcolor in vc.net
    S salaikumar

    Hello i am working on VC++.Net Could any one please tell me how to change the back color of a particular column(not all columns) in Datagrid control. Thanks in advance Salai

    C / C++ / MFC csharp c++ tutorial

  • exit(0) function in vc++.net
    S salaikumar

    Hi..thanks for yr reply... But thats not a function.. its an event.. check this code.. private: System::Void mnuimport_Click(System::Object * sender, System::EventArgs * e) { if (MinmaxFlag==false) { MessageBox(0,"Configuartion file is not set. Please import it.","Configuration",MB_OK); exit(0); } else if (RangesFlag== false) { MessageBox(0,"Data Ranges file is not set. Please set it.","Data Ranges",MB_OK); exit(0); } OpenFileDialog *openFileDialog1 = new OpenFileDialog(); Stream *str; openFileDialog1->InitialDirectory = "c:\\Neural Net\\" ; openFileDialog1->Filter = "data files (*.data)|*.data|All files (*.*)|*.*" ; openFileDialog1->FilterIndex = 2 ; openFileDialog1->RestoreDirectory = true ; .......... } Salai

    C / C++ / MFC c++ csharp question

  • exit(0) function in vc++.net
    S salaikumar

    hello all... i have a parent form and some child forms.. In child form(both in .h and .cpp files), if i want to exit from a particular function or procedure or event, i used exit(0) function.. it works fine.. But when i use the same function in parent form, it closes the application instead of exiting just from the particular function.. why? pls explain... Salai

    C / C++ / MFC c++ csharp question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups