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
V

VC_RYK

@VC_RYK
About
Posts
85
Topics
53
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to migrate CORBA to Web Service in C++
    V VC_RYK

    Hi Experts, I have a server written in C++, Client is in JAVA and middle-ware is CORBA, now we are planing to replace CORBA by web Service(SOAP or REST). we don't want to make any changes in our business logic just want to replace CORBA by web service. Can anyone give some idea how do i approach. since I googled a lot, how to write a REST or SOAP service in C++ but didn't get any lead. Please do let me know if you seek any further info Thanks in advance RYK

    Managed C++/CLI c++ java wcf sysadmin business

  • Error while declaring a cursor
    V VC_RYK

    Hi All, I am Newbie to Database and want to have all tables name and then columns of respective tables using following lines. DECLARE CURSOR TEMPCURSOR is Select table_name from all_tables where owner='FSS_ADMIN' order by TABLE_NAME; begin open TEMPCURSOR; for P in TEMPCURSOR loop select COLUMN_NAME from user_tab_columns where table_name= p.table_name; end loop; end; But while executing above lines, following error is occuring Error starting at line 1 in command: DECLARE CURSOR TEMPCURSOR is Select table_name from all_tables where owner='FSS_ADMIN' order by TABLE_NAME; begin open TEMPCURSOR; for P in TEMPCURSOR loop select COLUMN_NAME from user_tab_columns where table_name= p.table_name; end loop; end; Error report: ORA-06550: line 5, column 5: PLS-00428: an INTO clause is expected in this SELECT statement 06550. 00000 - "line %s, column %s:\n%s" *Cause: Usually a PL/SQL compilation error. *Action: I googled to understand the issue but could not get so I request you all to help me out and I will be very thankful for your support. With regards R e h a n

    Database help database

  • WM_COMMAND is not getiing fired
    V VC_RYK

    Dear All, I have a main modeless dialogbox created by CreateDialog and have another child model dialog box created by DialogBox and on this child window I have many button but when I am clicking on any button WM_COMMAND is not getting fired in winproc of child dialog. I will be very thankful for your support. With regards RYK

    C / C++ / MFC

  • Secure ,Portable char array functions ?
    V VC_RYK

    I reposted "here" because i did not get any response "there" even after 2 days.

    C / C++ / MFC c++ data-structures question

  • Secure ,Portable char array functions ?
    V VC_RYK

    HI, Is there a standard/Portable equivalent functions for MSVC++ functions like : strncpy_s(), strcpy_s(), _stricmp(), strcat_s(), sprintf_s(), fopen_s() etc. I am porting a VC6 application to VC8, and getting tones of warnings regarding non-secure functions. I want to replace the non-secure functions with secure ones. But, till now i have not been able to find a portable solutions. I want a portable solution as some part of my app. connects with unix while others with windows. Thanks in advance.

    C / C++ / MFC c++ data-structures question

  • Where to get VC8 Debug CRT 8.0.50727.4053 [Moved]
    V VC_RYK

    HI all, I have recently installed the "Service Pack 1 Redistributable Package ATL Security Update" update. Now i have the x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.4053_x-ww_e6967989 in my "c:\window\WinSxS\" folder. But, i dont have the corresponding Debug version. Now, when i build the application in VS2005, the debug manifest of my application refers to the 8.0.50727.4053. Now, I am unable to debug my application as it fails to find the debug version of 8.0.50727.4053. How can i Solve this? Thanks in advance. Bibin Varghese

    modified on Friday, August 20, 2010 12:31 PM

    C / C++ / MFC question announcement c++ security debugging

  • Enum Issue
    V VC_RYK

    Thanks Ash, I have searched through the entire MS site, went through the "Major Changes from Visual C++ 6.0 to Visual C++ .NET" document [http://msdn.microsoft.com/en-us/library/2byy0fh6%28v=VS.71%29.aspx[^]]. No info about this.

    C / C++ / MFC help tutorial

  • Enum Issue
    V VC_RYK

    Hi Experts I am migrating one project from Vc 6.0 to Vc 8.0. I found one compilation Error regarding Enum. In Vc 6.0 they have declared an enum in a class and again the same enum they are using in other class with scope resolution and have changed the enum value. It is compiling fine on Vc 6.0 but throwing an error while compiling in Vc 8.0. Example code. class CTest { public: enum TestEnum {NA=0, First}; }; class CTest1 { public: enum CTest::TestEnum {Second, Third}; }; It is working fine in Vc 6.0 but throwing error in Vc 8.0 Error is:- error C2911: 'CTest::TestEnum' : cannot be declared or defined in the current scope

    C / C++ / MFC help tutorial

  • Get status of Remote windows service
    V VC_RYK

    Hi Experts I have to know the status(stop/start) of windows service which is on remote server. Thanks in advance R Y K

    ASP.NET sysadmin

  • Migration from VC 6.0 to Visual studio 2005
    V VC_RYK

    Hi experts I have to migrate some projects from VC 6.0 to visual studio 2005. Is Anything required to achieve it and what waht kind of problem i can face? As far as my knowledge is concerned, All upper version products automatically converts the project from older version to new one. With regards R Y K

    C / C++ / MFC csharp visual-studio help question announcement

  • How to use at for STL list
    V VC_RYK

    Thanks Dear..

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

  • How to use at for STL list
    V VC_RYK

    Thanks a lot.... It is working......

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

  • How to use at for STL list
    V VC_RYK

    Hi Experts I need at() feature in my STL List. can anyone help me out? With Regards R e h a n

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

  • Chnage backgrounf color of a form
    V VC_RYK

    and i am using VS 2005

    C# csharp help

  • Chnage backgrounf color of a form
    V VC_RYK

    There is no any option bcakgroungimage that is what i was asking

    C# csharp help

  • Chnage backgrounf color of a form
    V VC_RYK

    No No, i want to set a image file

    C# csharp help

  • Chnage backgrounf color of a form
    V VC_RYK

    Hi All I am very new to C#,and i have to set background color of my form, i am trying to do like Assembly myAssembly = Assembly.GetExecutingAssembly(); Stream testImage= myAssembly.GetManifestResourceStream("Test.jpg"); but here it crashing. can anybody help me out thanks in advance RYK

    C# csharp help

  • How to read a complete row.
    V VC_RYK

    Hi Experts I am accessing the database using VC++ and want to read a row at a time. Is there any API to read a row? Thanks in advance RYK

    C / C++ / MFC c++ database json tutorial question

  • Reading larg File Issue
    V VC_RYK

    But Dear i m not using MFC or SDK

    C / C++ / MFC help question

  • Reading larg File Issue
    V VC_RYK

    Hi Experts I am reading a 7GB File line by line and i need to write some of it's contantants into two files of 9MB and 6MB in a function, for reading and writing i am using a while loop,but my application is not writing the complete OUT-PUT Files. it seems my application is not able to read the complete In-Put File. My System has only 256MB of RAM and hardly 8 GB Free space in my Hard disk. so can anybody tell me what could be the reason? Thanks in advance RYK

    C / C++ / MFC help 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