Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
6
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #630

164 Posted Topics

Member Avatar for samaru
Member Avatar for moderate_rock48

I wasn't counting so far since I was in school :D And I think 38 is in decimal base...

Member Avatar for Dani
2
16K
Member Avatar for Dani

[QUOTE=Carl Hoffman]Hi, this is Carl Hoffman, I just registered. Now what? Can I throw out a question now concerning a certain glitch on my IBM Think Pad with Windows ME? Lead me, please. Carl[/QUOTE] Try in the [URL=http://www.daniweb.com/techtalkforums/forum99.html]Microsoft Windows[/URL] forum.

Member Avatar for jamesjoseph1
0
9K
Member Avatar for FireNet

[QUOTE=johnnyrico]Hey, Thx for the tutorial, but i was wondering how to search for text, not records. Ex, i want to find all the records that have the word The in them how to do that?[/QUOTE] Open file, read a line, if this line contains "The" substring - that's a record …

Member Avatar for Swalih
5
12K
Member Avatar for hexstar

Sure... Regarding the Darwin's theory, there might appear some species of reindeer with an "onboard turbo-jet engine" :LOL:

Member Avatar for vegaseat
1
833
Member Avatar for floris

[QUOTE=rdzlyz]its your North Bridge fan i have the same problem[/QUOTE] Man, this thread is one year old...You're replying NOW???

Member Avatar for TeresaC
0
369
Member Avatar for mahnamesmika

For win98 I'm sure you need the drivers for flash drive (I had the same problem); for xp maybe a USB driver/config problem...

Member Avatar for jingda
0
167
Member Avatar for Nemesis

First, you should open a new thread... Second, your laptop was "Specifically created to meet the needs of the education sector" (manufacturer's product description), not for playing Doom 3 or something...

Member Avatar for mah300274
0
286
Member Avatar for dalaharp

>>does the address of the pixel vary or the value of the pixel vary. Depends how you see this matter: let's assume the rotation center is the center of the image. So, rotating the image means the pixel p[x][y] will have the value that was allocated to the pixel p[x1][y1] …

Member Avatar for arielbernal
0
3K
Member Avatar for ritcherjd

[QUOTE=dalaharp] and if .dat is not an image file format(ok), but images ARE encoded and represented in .dat format. so it CAN be read by my code. and image processing operations can be done pixel wise. or am i wrong again??[/QUOTE] You're right, but you have to know exactly how …

Member Avatar for angelique28
0
1K
Member Avatar for Emmitt310

[QUOTE=Emmitt310] The big thing is the compiler doesnt include graphics.h[/QUOTE] Change the compiler...I guess you want to use the graphic mode for DOS; for this I was using the Borland C++ 3.1 compiler. Then, you should write [CODE] intitgraph (&graphdriver, &graphmode, "C:\\BorlandC\BGI"); [/CODE] The part in the quotes must be …

Member Avatar for musawir
0
903
Member Avatar for Acidburn

You have this kind of statement [code] if () .......... else .......... else ........ [/code] in your code?

Member Avatar for CezarPt
0
5K
Member Avatar for PriyaJaiGanesh

[QUOTE=PriyaJaiGanesh] (2)what's the command to rename a file? [/QUOTE] [b]int rename (const char *oldname, const char *newname)[/b] The rename function renames the file oldname to newname. The file formerly accessible under the name oldname is afterwards accessible as newname instead. If rename fails, it returns -1.

Member Avatar for snivas519
0
9K
Member Avatar for gpleonar

You have some mistakes in this code: [quote][COLOR=Red]cin >> fN[/COLOR]; for ( [COLOR=Red]fN = 1[/COLOR] ; fN >= 3 ; fN++ ) [/quote] As you introduce [I]fN[/I] from the standard input, why are you initializing it in the [I]for[/I] loop? More, if you are initializing [COLOR=Red]fN = 1[/COLOR], then the …

Member Avatar for harshmore
0
414
Member Avatar for epsos

Read [URL=http://www.houghi.org/pivot/entry.php?id=62#body]here[/URL] and [URL=http://www.neowin.net/forum/lofiversion/index.php/t312600.html]here[/URL] , it's a good start. Anyway, the web is full of info on this topic; try google.

Member Avatar for Stefano Mtangoo
0
373
Member Avatar for warthogism

Boot from a win98/whatever bootdisk, run "fdisk /mbr" to clean MBR (I assume grub was installed in MBR), and reboot.

Member Avatar for RoyalPeak
0
329
Member Avatar for Paddy

For best compression rates use WinUHA, free software, dld from [URL=www.winuha.com]www.winuha.com[/URL] ; beats zip, rar, etc. But it's going a little slower than the rest.

Member Avatar for ||KeSSu FIN||
0
756
Member Avatar for sutty8303

As your code is so small, you should post it betwen [URL=http://www.daniweb.com/techtalkforums/announcement.php?f=8&announcementid=3]code tags[/URL]. Some errors I noticed: - at the end of [b]include[/b] directives you do not have to put a semicolon([b];[/b]) - [b]main[/b] allways returns [b]int[/b] - you have to declare the function [b]circle_area[/b] before [b]main[/b] - you don't …

Member Avatar for peter_budo
0
305
Member Avatar for Geek-Master

First, use [ code ] [/ code ] tags (not <code>) >>int ptr[n]; Don't declare an array with undefined dimention.

Member Avatar for new programer
0
490
Member Avatar for free_eagle

#include "stdafx.h" #include <graphics.h> #include <conio.h> void main() { int gd=DETECT, gm; initgraph(&gd,&gm,""); int x,y, j=250 ; setbkcolor(WHITE); setcolor(LIGHTBLUE); outtextxy(3,5," I am so stupid hyong I am so stupid sorry sorry !!! "); // output "line" text x = getmaxx(); y = getmaxy(); x=j; line(j,0,x,y); x = getmaxx(); y = …

Member Avatar for peter_budo
0
4K
Member Avatar for samarth

Use [URL=http://www.daniweb.com/techtalkforums/announcement.php?f=8&announcementid=3]code tags[/URL]

Member Avatar for gastonci
0
271
Member Avatar for luisator

Use [URL=http://linux-ip.net/html/tools-ifconfig.html]ifconfig[/URL] as root in a terminal.

Member Avatar for tracedinesh
0
405
Member Avatar for Khiladi420

Are they on the same cable? Maybe both are master, or both slave...(just guessing)

Member Avatar for harleyd
0
158
Member Avatar for dalaharp

[QUOTE=dalaharp]yes vegaseat, char stores 1byte. but with 128 characters, how will it represent 256 levels???? or am i overlooking a simple fact..i dono...[/QUOTE] In fact, 1 byte = 8 bits; so a [I]char[/I] variable can have 2^8 = 256 values; this have nothing to do with ASCII chars...

Member Avatar for jephthah
0
3K
Member Avatar for Mahen

[QUOTE=Mahen] [/QUOTE] That's not good, you're encouraging software piracy... If you can't afford to buy a compiler, why not use a free one?

Member Avatar for Mahen
0
430
Member Avatar for riturajraina

Hi, Riturajraina I tried your piece of code in Dev-C++ 4.9.9.0 compiler (available for free download at [URL=http://www.bloodshed.net]www.bloodshed.net[/URL]), and it's working just fine (just delete the [B]clrscr[/B] command)...

Member Avatar for Narue
0
184
Member Avatar for Sword

[URL=http://www.google.ro/search?hl=ro&q=kde+vs+gnome&btnG=C%C4%83utare+Google&meta=]http://www.google.ro/search?hl=ro&q=kde+vs+gnome&btnG=C%C4%83utare+Google&meta=[/URL]

Member Avatar for TENthGreen
0
717
Member Avatar for Marauder

Just a suggestion (maybe help:)): that partition of 125G - try to convert it to FAT32 (it seems to be NTFS) (usually I use Partition Magic for this kind of problems). The rest of 107 gb, they seem to be "unallocated", and I doubt you can convert the partition to …

Member Avatar for linux
0
200
Member Avatar for potential

[QUOTE=potential]guys, please help me... how do i make clrscr() work? my friend told me to include conio.c, but i think that my version of dev-c++ doesn't have that...so i tried downloading conio.c...but the problem is, clrscr() still doesn't work in my pc but it works in my friend's pc...we're both …

Member Avatar for Dave Sinkula
0
2K
Member Avatar for jbennet

Slackware uses the *.tgz packages (instead of RPM). You can install them with [CODE]installpkg packagename.tgz[/CODE] You can download prebuild Slack packages from [URL=http://www.linuxpackages.net]http://www.linuxpackages.net[/URL] As sfbell said, you have to take care for dependencies, since Slackware tools do not check the dependencies automatically. If you want a more user-friendly distro, I'd …

Member Avatar for TKSS
0
228
Member Avatar for Vedavyas

[QUOTE=Vedavyas]How to load an image (say a JPG file into Turbo C or C++)? If can't can it be done only in VC++? :-|[/QUOTE] It's a little bit complicated...Assume an image is an array of values - for every pixel in that image, it is assigned a value in that …

Member Avatar for Vathanak
0
823
Member Avatar for gordon52

After running [B]alsaconf[/B], you have to run [B]alsactl store[/B] as root, to save your settings.

Member Avatar for gordon52
0
89
Member Avatar for moderate_rock48

I don't use nero INCD for this. There is an "Erase cd" (or rewritable) command in the menu of nero, somewhere...

Member Avatar for chicago
0
134
Member Avatar for Dortz

What suggested lines are you trying to add? On my slack box, I have in xorg.conf the next lines: [code] Option "Protocol" "IMPS/2" Options "Buttons" "5" Option "ZAxisMapping" "4 5" [/code] and it works perfectly.

Member Avatar for Dortz
0
206
Member Avatar for goldeagle2005

Download this library and install it: [URL=download.fedora.redhat.com/pub/fedora/linux/core/4/x86_64/os/Fedora/RPMS/libpng10-1.0.18-2.i386.rpm]download.fedora.redhat.com/pub/fedora/linux/core/4/x86_64/os/Fedora/RPMS/libpng10-1.0.18-2.i386.rpm[/URL] Also, for divx you can use xine, vlc and a lot of other players (search google)

Member Avatar for goldeagle2005
0
254
Member Avatar for petercoti

[QUOTE=petercoti]if you need help and have a windows xp leave a comment and i'll try to help. :cheesy:[/QUOTE] Sure... on a Linux board :D

Member Avatar for frrossk
0
122
Member Avatar for nosound

As long as you see the systray icon, the blackice engine is started; if you see that red line, one of the blackice apps (Application protection, for example) is not working (that's happening on my computer).

Member Avatar for Stevie Wonder
0
85
Member Avatar for anandrangan

A quick guide for install Mandrake:[URL=http://member.melbpc.org.au/~parsonsd/linux/Mandrake10_Install.html]http://member.melbpc.org.au/~parsonsd/linux/Mandrake10_Install.html[/URL]

Member Avatar for goldeagle2005
0
267
Member Avatar for Koteswar

[QUOTE=Koteswar]Hello, Recently I installed Red Hat9 Linux OS. I searched on web to get an Anti-Virus software for my OS. I found one called "Panda", but it has got only 2500 virus definations. I felt that this is not sufficient for my OS. Could some one me tell, which one …

Member Avatar for jbennet
0
262
Member Avatar for epsos

A good tutorial for installing slackware: [URL=http://www.bitbenderforums.com/vb22/showthread.php?threadid=60154]http://www.bitbenderforums.com/vb22/showthread.php?threadid=60154[/URL]

Member Avatar for mittelgeek
0
209
Member Avatar for Sword

Take a look at [URL=http://distrowatch.com/]http://distrowatch.com/[/URL], you can choose one from there.

Member Avatar for jindalarpan
0
686
Member Avatar for stupidenator

There is no way to uninstall Windows, but you can format/erase the Windows partitions, and install Linux on that free space.

Member Avatar for stupidenator
0
162
Member Avatar for catnip_18

Go on this page: [URL=http://www.nvidia.com/object/linux_display_ia32_1.0-7667.html]http://www.nvidia.com/object/linux_display_ia32_1.0-7667.html[/URL], download the Nvidia_*.run file and read [URL=ftp://ftp.suse.com/pub/suse/i386/supplementary/X/XFree86/nvidia-installer-HOWTO]this page[/URL]

Member Avatar for frrossk
0
450
Member Avatar for Thomrok

Read here: [URL=http://www.sorgonet.com/linux/grubrestore/]http://www.sorgonet.com/linux/grubrestore/[/URL]

Member Avatar for frrossk
0
233
Member Avatar for KF4SQB
Member Avatar for ArbAg

QtParted will show as free space only the unpartitioned space on the drive. Your 20 gigs free space belongs to Windows partition? If so, I would resize the Windows partition (usually I use Partition Magic for this), and let the rest of the space to be partitioned during the install …

Member Avatar for mepnoob2005
0
152
Member Avatar for nik-

[b]ln -s[/b] is used to create symbolic links for apps/folders/etc. [code]man ln[/code]

Member Avatar for nik-
0
167
Member Avatar for Kamex

>>The problem is that Firefox is a GNOME application, and is designed to run in GNOME Oops! I didn't know this, so I installed Firefox on several distros, and it works flawlessly in KDE.... :cheesy:

Member Avatar for drauh
0
237
Member Avatar for John007

>>Is there a best Linux recommended to use for file servers? No; almost every Linux distro can be used as a file server, but I'd recommend to use a stable release of a solid distibution like Slackware/Debian/etc... >>can the operating system called OpenBSD be run with a desktop environment like …

Member Avatar for frrossk
0
181
Member Avatar for biqa

The End.