Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #2K
~9K People Reached
About Me

student doing bsc(H) comp sci final year

Interests
listening music,programming assembly..
Favorite Tags

33 Posted Topics

Member Avatar for alefdum

well don't worry i'm doing the same course from delhi university.. i can only help you out in c++ and assembly.. we had given a good guidence for projects.. i'll tell you when you come online.. well i'm going to work on cryptography project or on security project.. add me …

Member Avatar for Hank10
0
1K
Member Avatar for faith07

well i think you can't use much C lang stuff with tasm.. the reason is that it uses DOS and you know that it can only program 16 bit stuff not 32-bit.. so i got the same problem but just upgraded to masm.. there's inbuilt libraries available in that. or …

Member Avatar for neha afreen
0
1K
Member Avatar for Arthas

[B]Public: [/B]So that your class will be accessed by others [B]Static: [/B] This tells that this or your main method class won't be instantiated. you need to save your program with the class name which contains your main method (public). [B]String args[][/B] : is an array of command line arguments.. …

Member Avatar for BestJewSinceJC
0
81
Member Avatar for mytime19

Hello everyone, Can anybody tell me how can i pass parameters to a paint method ? I know we can paint on a panel but can anyone provide a good example? Something like this? I know its wrong but please correct me. [CODE] int x=10; int y=120; JPanel p = …

Member Avatar for BestJewSinceJC
0
90
Member Avatar for lrolsto1

try this [CODE] public class Battleship{ public static void main(String[] args){ int boardInput = Integer.parseInt(args[0]); } }[/CODE] Cheers

Member Avatar for lrolsto1
0
123
Member Avatar for mytime19

i am using a GridBagLayout and it works fine when i take my coordinates to place an asterisk on the frame but if i try to extract the coordinates from an sql table then it just displays one single asterisk and which would be in the center.. and if i …

Member Avatar for masijade
0
314
Member Avatar for albert101

[QUOTE=albert101;1170679]Hi everyone, I am new to Java and more recently Swing. I was wondering if anyone would be able to show me a way of inputting a value into a text box, and being able to use this to calculate a sum for example. Also I am interested to know …

Member Avatar for albert101
0
89
Member Avatar for mytime19

Hello Everyone, I am trying to extract integer values from 2 int variables i have created in my database table "mytab". The data or table values i have extracted on console and its working fine. But i want to use the values as x,y coordinate for my label i have …

Member Avatar for mytime19
0
812
Member Avatar for mytime19

I am trying to draw stars/asterisks but i can't. Any idea? [CODE] import java.io.*; import java.awt.*; import javax.swing.JPanel; import javax.swing.*; public class kmd1234 extends JFrame{ kmd1234(){ JFrame f; JPanel p; JLabel l; int x,y; f = new JFrame("my frame"); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); p = new JPanel(); p.setPreferredSize(new Dimension(512, 512)); p.setBackground(Color.WHITE); l = …

Member Avatar for mytime19
0
94
Member Avatar for jenjenjenjen

Have fun my friend: [CODE] public class for2{ public static void main(String[] args){ for(int x = 2; x < 101; x++) { if(x%2==0) System.out.println("x =" + x); } } } [/CODE] Cheers ____________________________ javaAddict is correct. :)

Member Avatar for mytime19
0
128
Member Avatar for koeney

hi, I don't think you need a truth table. you can work with byte and byte array to see if you are getting a tautology or not. Cheers

Member Avatar for mytime19
0
88
Member Avatar for hinks

Maybe this would help you in working with client-server stuff: [URL="http://java.sun.com/docs/books/tutorial/networking/sockets/definition.html"]http://java.sun.com/docs/books/tutorial/networking/sockets/definition.html[/URL] Cheers

Member Avatar for mytime19
0
87
Member Avatar for KimJack

posting a snippet might solve the problem in your case. Regards, Lucky

Member Avatar for BestJewSinceJC
0
226
Member Avatar for mytime19

Hello everyone, So, far i have worked on employee management system(sap - abap), inventory payroll system (C lang), Reverse engineering(assembly),Quiz (VB). Now i want to work on java so that i connect my project with any server file like Sql connectivity,ms access, ms excel etc (i don't know how to …

Member Avatar for Salem
0
131
Member Avatar for sam_inquisitive

how about reverse engineering? cryptography? watermarking? cpu overlocking? game hacking? Regards, Lucky

Member Avatar for mytime19
0
158
Member Avatar for sameeraict

for i <--1 to n-1 do --------------> complexity is o(n) time for j <-- i+1 to n do --------------> if it is nested then it would be previous complexity(new complexity) ==>> (O(n)(O(n)))==> O(n square) if both the loops were separate and they were not nested one's then complexity of loop1 …

Member Avatar for sameeraict
0
127
Member Avatar for mytime19

Hello everyone, I am new to vb6 though i have done java and abap before. I gotta design an application which is a quiz with a countdown timer. I have created the countdown timer stuff but how do i create questions and answers? say if i have 20 odd questions …

Member Avatar for vb5prgrmr
0
522
Member Avatar for sukatoa

get it here [URL="http://webster.cs.ucr.edu/AoA/index.html"]hxxp://webster.cs.ucr.edu/AoA/index.html[/URL] Regards, lucky

Member Avatar for sanzilla
0
116
Member Avatar for agrawalashishku
Member Avatar for vhinchies

hey, dont be so rude.. here is my old post on forum for division algorithm. you can pm me for any help on assembly. [url]http://www.daniweb.com/forums/thread61663.html[/url]

Member Avatar for mytime19
0
405
Member Avatar for mytime19

[COLOR=green]I have created a picture viewer in C# but it's giving 2 errors, i don't know how to deal with them. I'm at beginner level in C#. So please help me in this, I have written the code and errors below, you can look at that. [/COLOR] [CODE] using System; …

Member Avatar for f1 fan
0
172
Member Avatar for ECETiger

well brother look and read for INT 21H with data moving to DX(for output or printf) and AL(for input or scanf) to use scanf and printf as you use in C.. Strings are handled in different way that a simple integer here in assembly. I would recommend you to read …

Member Avatar for mytime19
0
103
Member Avatar for only_asm

.model SMALL .386 .DATA a1 dB 'Enter the first number$' a2 dB 'Enter the second number$' A3 DD ? A4 DD ? .code .STARTUP mov ebx,00000000H mov edx,00000000H mov eax,00000000H mov cl,4 mov dx,offset a1 mov ah,09h int 21h MOV EDX,00000000H mov ah,01 int 21h sub al,30h cmp al,09 jbe …

Member Avatar for Ryu
0
1K
Member Avatar for mytime19

i need softice for deassembling my assembly code.. can you give me any link to download? i do have softice but it work for 95 i have xp installed..

Member Avatar for Ancient Dragon
0
75
Member Avatar for mytime19

i want to convert a 32-bit processor video card into 64 bit.. i mean i want a souce code which work it for 32 bit processor as 64 bit processor.. 64 bit processor is a dual core processor manufactured by intel and 32 bit we all know its p-4 and …

Member Avatar for Ancient Dragon
0
91
Member Avatar for mytime19

[B]well i need books on ASM which uses C..[/B] [B]i know assembly and C seperately but don't know how to use C with assembly.. so thats why i need help..[/B] [B]and i'm working on Tasm..[/B] [B]but i need manual of masm 9 too..[/B] [B]i just downloaded masm9..:lol: [/B]

Member Avatar for Ancient Dragon
0
131
Member Avatar for mytime19

[B]i need computer graphics programs written in c..[/B] [B]thanks a lot..:sad: [/B]

Member Avatar for John A
0
146
Member Avatar for mytime19

i need previous years enterance papers with solution.. can anyone give me any link or help me out.. i'm having exam.. IIT JAM 2007

Member Avatar for ~s.o.s~
0
130
Member Avatar for mytime19
Member Avatar for iamthwee
0
80
Member Avatar for mytime19

hi...can anyone give advice, tips, on how will i come up in developing the antivirus software coz i dont have any idea.. im know core level in assembly and i haven't tried using the it.. i have had a hard time learning it.. actually i want to create a project.. …

Member Avatar for jwenting
0
96
Member Avatar for jto

hi, type "msconfig" on "run" in your start menu.. and i think last option is there named as "startup".. deselect all your enteries will speed up your pc.

Member Avatar for mytime19
0
156
Member Avatar for Knight3
Member Avatar for mymirror

hi try this one.. .model SMALL .386 .DATA a1 dB 'Enter the first number$' a2 dB 'Enter the second number$' A3 DD ? A4 DD ? .code .STARTUP mov ebx,00000000H mov edx,00000000H mov eax,00000000H mov cl,4 mov dx,offset a1 mov ah,09h int 21h MOV EDX,00000000H mov ah,01 int 21h sub …

Member Avatar for mytime19
0
193

The End.