Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~16.3K People Reached
About Me

im a musician, a programmer. thats all

Interests
playing the guitar, fishing, playing pingpong, sleeping
PC Specs
dont have my own yet
Favorite Tags

41 Posted Topics

Member Avatar for Covinus

greetings just started with C/C++. Im not quite comfortable porting from java to c/c++. Pointers are quite hard at start. So pls help me with this problem I want to copy the exact data of a certain pointer to an array of struct. Not just point a pointer from another. …

Member Avatar for Tuyen
0
5K
Member Avatar for onlyremedy

just right click on the toolbar and try to find the box you are looking for.

Member Avatar for RaajiManju
0
179
Member Avatar for Covinus

can anyone explain about assertion failure. i cant seem ti fix my problem with this error. it comes out when i try to load a file. here part of the code [code=c++] BDLL fileHandle::load() { char fileN[MAX_PATH]=""; OPENFILENAME ofn; ZeroMemory(&ofn, sizeof(ofn)); ofn.lStructSize = sizeof(ofn); ofn.lpstrFilter = "Bitmap Files (*.bmp)\0*.bmp"; ofn.lpstrFile …

Member Avatar for fillygirl1213
0
192
Member Avatar for Poonam Mehta

i found one program before that does that try googling around i kinda forgot the site. Im gonna try to make my own progam. Im bored here.

Member Avatar for chadz mutia
0
143
Member Avatar for Covinus

how do I get The value I have entered in a textfield after submitting it. i need to process it using java thanks

Member Avatar for kapil.kumar13
0
145
Member Avatar for Covinus

ive been searching google for any tutorial about loading bitmaps and paint it in a window. so far the tutorials ive read was loading it from your resources. I want to paint a bitmap from where you will choose a file from a file dialog and the you will draw …

Member Avatar for alexchen
0
96
Member Avatar for Covinus

greetings again. few more question.. [code] /*----------------------------------------- MENUDEMO.C -- Menu Demonstration (c) Charles Petzold, 1998 -----------------------------------------*/ #include <windows.h> #include "resource.h" #define ID_TIMER 1 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; TCHAR szAppName[] = TEXT ("MenuDemo") ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) { HWND …

Member Avatar for downtimedk
0
515
Member Avatar for Covinus

whats the reason behind using int main over void main? in most books ive read they often discourage the use of void main. but offer little info about it

Member Avatar for Tom Gunn
1
1K
Member Avatar for Dave Sinkula

Im a smoker myself. wakeke In my point of view smokers have to consider the non-smokers. Indeed second hand smoke is harmful. I usually throw my newly lighted cigarretes when is see kids in the area. I hate second hand smoke as well its irritating my nose.

Member Avatar for jbennet
0
4K
Member Avatar for sinjix_media

windows versus linux? both have strenghts and weaknesses against each other. its just a matter of a persons preferences. choose what fits your need... ive been using windows for more than 9 years already. i would rate satisfactory on their os. what i hate most about windows is that your …

Member Avatar for linux
0
530
Member Avatar for Covinus

I want to make a program that monitors your cpu, virtual and physical memory. Can anyone give me a head start. Is there a standard function to know cpu usage, how much memory left, etc Whats the right term to search for monitoring computer resources in c? I tried some …

Member Avatar for Covinus
0
135
Member Avatar for Covinus

im making a timer program. that when a user dont input something in a specific time. the program will go to another menu so far in my research. threads would be the solution to this. but in my current status right now as a c++ programmer. i dont think im …

Member Avatar for Salem
0
111
Member Avatar for pyapplico

[quote]I am a beginner that is learning C++. I would like to now how everyone else learnt C++.[/quote] ive learned it the hardway. from scratch i have to do intermediate programming modules in a day or two. (the basics are just inserted during research time) <- this is not a …

Member Avatar for hinduengg
0
164
Member Avatar for Covinus

ive been trying to connect my c program and a postgre database using VC++. but i cant compile it because it cant find "postgres_fe.h". and also i cant find any tutorials about this one too. When i searched google, most are for linux. if anyone here knows some links to …

Member Avatar for ~s.o.s~
0
144
Member Avatar for Jishnu

[QUOTE=Jishnu;380483]Hi everybody, Do pointers or references exist in Java ? -Jishnu[/QUOTE] no

Member Avatar for jwenting
0
118
Member Avatar for Covinus

warning C4273: 'fileHandle::fileHandle' : inconsistent dll linkage. dllexport assumed. what does this warning mean? during debug i dont get this message but during release i have this one. can anyone explain the message to me and maybe give some remedy to it

Member Avatar for Ancient Dragon
0
486
Member Avatar for Sir_BigOne

if you want to program in c++ you need a very good foundation. one design philisophy of c++(wikipedia.org) C++ is designed to give the programmer choice, even if this makes it possible for the programmer to choose incorrectly it could get nasty if you jump beginer level to advance if …

Member Avatar for Covinus
0
99
Member Avatar for raj1324
Member Avatar for happygeek
0
182
Member Avatar for stonecoldstevea

Your ABsomething has no value. so when compared to your moduleCode it doesnt match your condition so it loops forever

Member Avatar for stonecoldstevea
0
89
Member Avatar for Covinus

[code=c++] void CMod7aView::OnPaint() { CClientDC dc(this); if(hBmp!=NULL) { CBitmap bmp; bmp.Attach(hBmp); CDC bmDC; bmDC.CreateCompatibleDC(&dc); CBitmap *pOldbmp = bmDC.SelectObject(&bmp); BITMAP bi; bmp.GetBitmap(&bi); dc.BitBlt(0,0,bi.bmWidth,bi.bmHeight,&bmDC,0,0,SRCCOPY); bmDC.SelectObject(pOldbmp); } [/code] how do you make your image persistant? everytime iload a bitmap after I move the main window the image disappears. pls help me.

Member Avatar for Covinus
0
111
Member Avatar for Covinus

[code=c++] // MainFrm.cpp : implementation of the CMainFrame class // #include "stdafx.h" #include "mod7a.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif char file[MAX_PATH]=""; ///////////////////////////////////////////////////////////////////////////// // CMainFrame IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd) BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd) //{{AFX_MSG_MAP(CMainFrame) ON_WM_CREATE() ON_COMMAND(ID_FILE_OPEN, OnFileOpen) ON_WM_PAINT() //}}AFX_MSG_MAP END_MESSAGE_MAP() static UINT indicators[] = { …

Member Avatar for Covinus
0
144
Member Avatar for Covinus

[code] hBitmap = LoadBitmap(NULL, saFileName); [/code] ho come i cant load any bitmap using this function? hBItmap is always null

Member Avatar for Covinus
0
234
Member Avatar for Covinus

[code] a=(char*) malloc(sizeof(15)); b= bmfh.bfType; sprintf(a, "bfType: %d", b); TextOut (hdc, 0, 0,a , strlen(a)) ; delete[] a; a=(char*) malloc(sizeof(15)); b=bmih.biBitCount; sprintf(a, "bitCount: %d", b); TextOut (hdc, 0, 20,a , strlen(a)) ; [/code] is it necessary to leave the a undeleted when i gave it another value or i should …

Member Avatar for Covinus
0
121
Member Avatar for Covinus

what is the equivalent of javas repaint() method to win32s? i was now able to load a bitmap into a window but sadly you have to minimize or maximes the window before the bmp appears. any suggestions how to solve this one?? any help with be greatly appreciated.. thanks

Member Avatar for Covinus
0
76
Member Avatar for Covinus

First of all im a java programmer and im porting to c\c++. I have no knowledge of c\c++. Because my work requires me to learn c\c++. in just 1 week they want me to code intermediate stuff. I wasnt able to comply 100% to their requirments but at least i …

Member Avatar for ~s.o.s~
0
150
Member Avatar for Covinus

Any one here can tell me how to pop up an html file from your GUI... any classes to be used :cheesy:

Member Avatar for peter_budo
0
85
Member Avatar for Covinus

i need to access a variable from a class to another class currently running at the same time. my plan is to: Save the values of the variable to a file and access it from the other class other options i have Use a database use RMI what other features …

Member Avatar for Covinus
0
103
Member Avatar for Covinus

--------------------Configuration: <Default>-------------------- C:\Documents and Settings\mykel\Desktop\auto.java:4: unexpected type found : char required: reference Set <char>setAlpha = new HashSet<char>(); ^ C:\Documents and Settings\mykel\Desktop\auto.java:4: unexpected type found : char required: reference Set <char>setAlpha = new HashSet<char>(); ^ 2 errors how come i cant cast a char on a set??? it works well with …

Member Avatar for jwenting
0
204
Member Avatar for Covinus

import java.util.*; public class al{ public static void main(String[] args){ List l = new ArrayList(); Object a = "hello"; l.add(a); l.add("asdasd"); l.add("hgdfsdfshjk"); System.out.println(l.isEmpty()+""); System.out.println(l.get(0)); for(int i=0;i<l.size();i++){ String b = (String)l.get(i); System.out.println(b); } } } i still havent figured out how to solve the warning it gives. can someone esplain to …

Member Avatar for masijade
0
74
Member Avatar for Covinus

i have downloaded PCLinuxOs and ChubbyPuppy recently. i was wondering how you would burn the iso as bootable cd. do you need to extract the contents of the file and burn it or just burn the iso file as bootable cd

Member Avatar for jbennet
0
165
Member Avatar for Covinus

[code=java] import java.io.*; class Tokenizer { public static void main( String args[] ) throws Exception { String sample = "myfile.txt"; InputStreamReader in; FileInputStream file = new FileInputStream(sample); in = new InputStreamReader( file); StreamTokenizer parser = new StreamTokenizer( in ); while ( parser.nextToken() != StreamTokenizer.TT_EOF ) { if ( parser.ttype == …

Member Avatar for jwenting
0
163
Member Avatar for badran
Member Avatar for srhalfwaythere
0
140
Member Avatar for Covinus

i want to try linux. I was wondering if anyone of you guys could give me a distro which give you a more Programmer interface. a distro which will give you more space to improve as a programmer. thanks in advance. btw im looking at the info about gentoo..

Member Avatar for Covinus
0
394
Member Avatar for Covinus

im trying to build an editor using java. how can i bind an interpreter like perl. so i can run or output the result in a gui??

0
39
Member Avatar for Covinus

what are the best gui module of perl? i know tk. anyone here have any more suggestion?? im a total noob in perl... pls help me.. thanks

Member Avatar for Covinus
0
162
Member Avatar for Covinus

i was trying out some java gui's and when I tried the Panel nothing seems to come out. The frame does! but no panel. i was wondering it could be the JDK was old my version out home is jdk1.0.5 something like that. or my code was old school. The …

Member Avatar for hooknc
0
99
Member Avatar for giles

id say java. creating complex app is easier than other oo language. in terms of GUI java has one of the best and widely used today. best way to learn java would be the Object oriented first approach.

Member Avatar for Covinus
0
362
Member Avatar for Covinus

well my team decided to create a game with ai for our special seniors project. my friend told me be very carefull in creating ai because it maybe what you call ai. So whats basically the difference between the two

0
52
Member Avatar for Covinus

what kind of java do they use in those yahoo games. im a senior computer science student and its time for my classmate to make a special project. we a re planning to make a game of checker with the same interface as the yahoo games. I would like to …

Member Avatar for Covinus
0
245
Member Avatar for Covinus

my cousins computer started to get crazy. everytime i open the control panel. a message pops out saying windows encountered a problem. a few weeks later the my computer icon begins to act like that. what should i do the os is a ms xp sp1.

Member Avatar for Inky
0
75
Member Avatar for Covinus

hi im covinus im new here. I was looking for a community that can help me learn perl through my own efforts. thats why i found this community.. i want to learn perl!! i cant afford to go to school and learn pearl so i just bought a cheap book …

Member Avatar for Covinus
0
90

The End.