Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~20.7K People Reached
Favorite Tags
Member Avatar for Andy90

Hi, I m facing some trouble in c++? I want to know how to write equivalent c++ statement from these c codes struct stat sb; // this is struct, will be same in c++ printf("I-NODE NUMBER: %ld\n", (long) sb.st_ino); // this is C statement // c++ statement of above statement …

Member Avatar for NathanOliver
0
219
Member Avatar for Andy90

Hi, I recently developed a program which has source and header files in vc++! what I want to do is convert the same in C#. I got the idea of source files but how to import/use header files in C#(I want seperate file for class creation/ data initialization like header …

Member Avatar for JMC31337
0
14K
Member Avatar for Andy90

Hi, is it possible to invert colors of a webpage using javascript only? If yes, please provide me sample code / tutorial!

Member Avatar for Stuugie
0
73
Member Avatar for Andy90

Hi, I want to know how can I find the frequency of applications executed on desktop? My main motive here is to find least used application on desktop! I know there is a way of doing it through windows OS tools. But, I want to know how the same can …

Member Avatar for stultuske
0
206
Member Avatar for Andy90

I m trying to convert C code to C++. Facing some difficulties help me out! //This is struct typedef struct index { int id; char word[20]; int count; }indexs; // Function prototype void fileScanner(FILE * ifp,int i); void fileRead(FILE *ofp); int findString(char s[],char u[]); int searchEntry(indexs [],char key[],int n); void …

Member Avatar for Schol-R-LEA
0
222
Member Avatar for Andy90

Hi, I m facing difficulties in replacing this C code with C++? For e.g : Can we use Fopen in C++? Please suggest me changes here to make it c++ equivalent! How to write this in C++ --> void fileRead(FILE *ofp); void fileScanner(FILE * ifp,int i); void fileRead(FILE *ofp); int …

Member Avatar for mridul.ahuja
0
499
Member Avatar for Andy90

Hi, I m trying to convert c code to c++. I m stuck at some part! Please help. What will be c++ equivalent of this snippet? void Scanned(FILE * ifp,int i) void Read(FILE * ofp) int Checker(char s[],char u[]) void Stored(FILE *) void Printed(FILE *ifp,FILE *ofp) These are file pointers …

Member Avatar for Ancient Dragon
0
669
Member Avatar for Andy90

Hello all, I am learning new stuff in c#! I want to know how to increase computer sound when user hits a button. The user will hit the key only once, the volume should increase from 1% to 100% (the increase in volume should not be sudden, it should be …

Member Avatar for nmaillet
0
143
Member Avatar for Andy90

Hello, I have developed an app. I want to protect this app, just like the one where we install some software by entering CD-key/Serial key. But I m not understanding how to do it? I want the serial key to be based on some formulation by MAC address! My Case: …

Member Avatar for Mike Askew
0
205
Member Avatar for Andy90

I have created an application in C#. I want to make it copyright protected / license. I want my application to be freeware, and not open source. From where and how to obtain the software license? Please help!!

Member Avatar for mike_2000_17
0
144
Member Avatar for Andy90

Hi, I have to seperate C# projects! Project 1 and project 2 Project 1 contains form1 and project 2 contains form2. What I did is, I have merged these two projects solution. And I have created a button in form1, which when clicked opens form2 from project2. When I compile …

Member Avatar for gusano79
0
125
Member Avatar for Andy90

Hi, I want to know what is main difference between Single Threaded and MultiThreaded Client-Server? I want to create a client server chat application. Server Form consist: 1 Textarea(text area) (to display text) 1 sendarea(text area) (to type the text to send) 1 Send button (to send the text which …

Member Avatar for JamesCherrill
0
171
Member Avatar for Andy90

Hello, I m new to servlets. I have written a servlet program which reads http header of local host! How to read http header of any website say www.google.com? /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Header; …

Member Avatar for Andy90
0
159
Member Avatar for Andy90

Hello, I have created a small application in C#! I want to do testing of it. Please suggest me some good testing tools!

Member Avatar for thines01
0
83
Member Avatar for Andy90

I have created an application which requires double value processing, I want to add trackbar so that user can select any double value he wants. But I m unable to set min and max value as double for trackbar. Help me.

Member Avatar for d.hussain
0
223
Member Avatar for Andy90

Hi, I created an app. I want a splash screen to be displayed in the beginning for 3 sec whenever I execute my program. Suggest me a way!

Member Avatar for Mitja Bonca
0
155
Member Avatar for Andy90

I m creating an app! in which if the user moves the cursor the message should be displayed! But I m using setcursorpos() in my form to set cursor position which display the message! I dont want message to be displayed when mouse is moved through function, I want message …

Member Avatar for skatamatic
0
209
Member Avatar for Andy90

Hi, I have two project solutions! Project1 and Project2. I want to merge these two, so there will be single solution Project1? I tried my best but unable to do so! How to do it without affecting my program, resources, assemblies etc.? P.S : I m using VS2010

Member Avatar for thines01
0
97
Member Avatar for Andy90

Hi, I have used menu tool strip in my form! I want menu to be dropped down when my cursor hovers on it! How to do this?

0
65
Member Avatar for Andy90

I m creating an full screen application! But dont know how make it fullscreen (i.e the buttons minimize, maximize, and close button should not appear on screen).

Member Avatar for Sahil89
0
119
Member Avatar for Andy90

Hi, I have created 2 forms. Form1 and Form2 Form1 contains button to open form 2 Form2 contains a check box and ok button When checkbox is checked and I click ok button, the TopMost property of form 1 is set true. But I m unable to see the change. …

Member Avatar for Mitja Bonca
0
155
Member Avatar for Andy90

Hi, I have two forms: Form1 and Form2 In Form1 there is one button which opens form2, and when I click on Title bar of Form2 I loose Form1 focus. I dont want this to happen. I want to click on title bar but at the same time form1 focus …

Member Avatar for Mitja Bonca
0
60
Member Avatar for Andy90

Hi, I m using SetCursorPos() in my project! [DllImport("user32.dll")] static extern bool SetCursorPos(int X, int Y); I want to use double value in the function? I m getting error PinvokeStackImbalance was detected. How to solve this?

Member Avatar for thines01
0
108
Member Avatar for Andy90

How to create and dispose the same object? I have created a form with button, on button click even I create a object and by clicking on same button I dispose the object! I m able to create a object but not able to dispose the same object. How to …

Member Avatar for Andy90
0
182
Member Avatar for Andy90

Hi, I have created a form with one button. I m using mouse hover event on button to execute code! But the problem is, I want to execute the code only if my mouse hover on button for more than 2 or 3 seconds!

Member Avatar for ddanbe
1
114
Member Avatar for Andy90

I have two forms Form 1: Contains 1. Trackbar (adjusts opacity of form 2) 2. Button ( to show form 2) Form 2: Contains 1. only trackbar (adjusts opacity of form 1) I m able to control only opacity of form 2 via form1, I want it to be vice …

Member Avatar for ChrisHunter
0
148
Member Avatar for Andy90

Hi, I want to know how to save elements properties even after the form closes, and resume it back when I open the form. [CODE]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { …

Member Avatar for Andy90
0
178
Member Avatar for Andy90
Member Avatar for Andy90

I have been trying to display form as taskbar but don't know how to! Is there any form property available to do so? The form will be permanently located either at top or at bottom of desktop. for eg: In (image) at the top the form is located and the …

Member Avatar for shandoosheri
0
578
Member Avatar for Andy90

There is DateDiff() function in VB.NET but which function is equivalent to it in c#? I m facing problem in converting this vb.net code to c# [CODE] Private LastPointWhenClicked As Point Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick If LastPoint = Cursor.Position AndAlso LastPointWhenClicked <> …

Member Avatar for Andy90
0
825