199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for SoulMazer

Hi, I have written a simple chat server and a client that can connect to it. To make it more secure, I would like to add SSL to the connection process. How would I go about doing this? Thanks in advance.

Member Avatar for SoulMazer
0
156
Member Avatar for andydeans

Hi, Could anyone point me to some good tutorials on using PHP with Dreamweaver? Also any other helpful forums? Many thanks Andy

Member Avatar for andydeans
0
196
Member Avatar for Nathan Campos

Hello, I'm learning Assembly and i want to know the tools that the other persons use to develop, things like: Nasm, emu8086, WinHex... All the things that you use that are related with Assembly and what the do. Only for improve my tools and my learning. Thanks, Nathan Paulino Campos

Member Avatar for NotNull
0
111
Member Avatar for Miganders
Member Avatar for Miganders
0
260
Member Avatar for InsaneVr6

I am creating a blog and wanted to be able to have the posts show up on the homepage (which I have coded flawlessly), but I want them to be posted to another page at the same time and ad a "read more" link where they can see the full …

Member Avatar for InsaneVr6
0
126
Member Avatar for babbu

hie if the user, after working with the form wishes to reset it, how can it be done. will me.refresh() help. wht is it used for?

Member Avatar for sknake
0
2K
Member Avatar for xellos
Member Avatar for brando|away

I'm uploading an image, and i need to store it with the rest of the requested content by the server. so right now im using [code] streamreader getimg = new streamreader(imagepath); string image = getimg.readtoend(); getimg.close(); string DataToBeUploaded = "requested content..." + image + "more requested content"; [/code] Everything is …

Member Avatar for brando|away
0
113
Member Avatar for Nathan Campos

Hello, I'm developing an simple OS, as you can see in my previous posts, but now i have a file that is too big for the boot sector(510 bytes), then i want to split it in two files, one that will be in the boot sector of the floppy and …

Member Avatar for NotNull
0
134
Member Avatar for justted

Hello, I have been trying to find a way to load my page in the following way and wondered if there is a solution using PHP/AJAX,etc? I have a webpage that has an iframe. This iframe contains alot (100 plus) small images and takes forever to load on a 56k …

Member Avatar for almostbob
0
125
Member Avatar for Nathan Campos

Hello, I'm trying to write my OS to an floppy disk, but when i try to boot up, Bochs says that i don't have any OS on that floppy, here is the command that i'm using to write: #1 Try: [code]C:\Assembly> DEBUG os.asm -w 100 0 0 1 -q[/code] #2 …

Member Avatar for NotNull
0
851
Member Avatar for xellos

whats wrong with my code? .model small .stack .data buffer db 10,?, 10 dup(' ') .code main proc mov dx, offset buffer mov ah, 0ah int 21h xor bx,bx mov bl, buffer[1] mov buffer[bx+2], '$' mov dx, offset buffer + 2 mov ah,09 int 21h ret mov ah,4ch int 21h …

Member Avatar for NotNull
0
538
Member Avatar for azn_sweet

[code] /*Output Section */ printf ("\nThat height is equivalent to " "%1f" " feet and " "%2f" " inch(es).\n"); scanf ("%f", &FEET); scanf ("%f", &INCHES); [/code]

Member Avatar for Aia
0
72
Member Avatar for shockeye

I have an anchor with a class name. When I click the anchor I want the class to change. When I click it again, I want it to change back. Simple, but I don't know JS. Thanks

Member Avatar for codejoust
0
247
Member Avatar for Weesh

hi, I am currently using an IFrame (in my jsp) to bring up a third party web content(ex.a payment page from [url]www.hsbc.com)[/url]. i want the external site to handle all the user actions (within the iframe). In this case I am unable to capture the errors or exception that the …

Member Avatar for codejoust
0
171
Member Avatar for elidotnet

I have some textbox to send one word to sql database. i want to fine this word in a coulmn that holding few words. i cant figure it out what the correct queary iv'e try the LIKE statement in many ways but still nothing. The word can be at the …

Member Avatar for elidotnet
0
144
Member Avatar for astroadam

Hey all :) I am currently working on a database and stuck on a question regarding SQL. I know the basics of SQL although this question has me stumped A list is required of dogs that have career winnings better than that of the average dog. List the dog_id, dog …

0
69
Member Avatar for Dajer

Hi friends what's a role of index in RMS? when we use index in RMS? plz I need your help.

Member Avatar for javaAddict
0
68
Member Avatar for joshymraj

Hi Friends, I am facing a very bad problem.I have added an SQL Database using VS 2005>>Add New Item>>Sql Database.The problem I am facing is not able to execute an INSERT or UPDATE.But the thing is that just after inserting and viewing the contents of the same table in the …

Member Avatar for DdoubleD
0
103
Member Avatar for Dajer

Hello friends I have a datagridview in my project that will show the resault of one storedprocedure.when I execute storedprocedure,It works correctly but when I call it through the program datagridview doesn't show anything.I used break point to find the problem but every thing was ok. So what's the problem? …

Member Avatar for kvprajapati
0
179
Member Avatar for robtech

Anyone got any pointers on the interpretation of REG_BINARY data such as the ascii strings that are stored as binary values in HKEY_CURRENT_USER "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\RecentDocs\\folder"; I have long mastered most of the Win32 Registry functions but never really had the need to delve into the murky depths of binary. I guess …

Member Avatar for robtech
0
255
Member Avatar for prodigyaj

I am trying to find the sum of integers ( (int)(a*i)/b ) where i is from 0 to 10^10. The problem is a/b >=1 and can be a fraction also and a and b are constant If it wasnt a fraction then it was really easy i*(i+1)/2 * a/b Any …

Member Avatar for Sky Diploma
0
115
Member Avatar for bunnyboy

Can someone explain what am I doing wrong? I get "vector subscript out of range" error. Here is the sample ... [CODE=cplusplus] #include <vector> using std::vector; struct CUBE { int number; bool changed; }; int _tmain(int argc, _TCHAR* argv[]) { vector<CUBE *> cube; for (int i = 0; i < …

Member Avatar for bunnyboy
0
4K
Member Avatar for low1988

The program cannot display the value which had assign to properly.The output is some weird texts.Why? [CODE] import java.util.ArrayList; class Employeee { private String name,department,position; private int idNumber; public Employeee() { name = null; position = null; department = null; idNumber = 0; } public Employeee(String n,String p,String d,int i) …

Member Avatar for javaAddict
0
154
Member Avatar for parthmishra

Hii.. I am an IT student of final year.. I Have to make a major project with my team.. We have to make project with latest technology.. I have a very much commnd over C#.. so,i wanna make a application based project.. but I have no good project topic.. plz,give …

Member Avatar for ddanbe
0
143
Member Avatar for lastleave

Hi experts I have three tables Section: sectionid (int), title (varchar) Category: catid (int), title (varchar), sectionid (int) Content: id (int), title (varchar), body (varchar), sectionid (int), catid (int), published (bit) I build a formview for adding, updating and deleting a Content in the EditItemTemplate I replaced the section and …

Member Avatar for kvprajapati
0
158
Member Avatar for azn_sweet

I need help with this assignment for my computer programming class..... I honestly have no idea what Im doing!!!! Convert a person's height from meters into feet and inches (rounded to the nearest whole numbers) and display the result on the screen. The height must be entered by the user …

Member Avatar for Salem
0
146
Member Avatar for TechExpressInc

Objective is to redirect the website user based on the location. If the user is at the office at a specified ip address, when an icon is clicked they will have access to the employee area. If the user is not at the specified ip address they will get a …

Member Avatar for cwarn23
0
174
Member Avatar for ishlux

Hi all, i am trying to install xamp on my pc which is Xp. but its showing setupXamp.bat is not found how to proceed , thanks ishlux

Member Avatar for cwarn23
0
91
Member Avatar for Belthemet

[B]#Off topic[/B] When I was logging in, I have noticed 600,00x members registered on this forum. Congrats on the 600k! ;) Hello. My console game is going pretty well, even though I don’t have much spare time to expand it. I have some ideas I would like to add, but …

Member Avatar for Belthemet
0
261
Member Avatar for pilipino93

Hi there. I was wondering how I would add another form to my Form1 in a WFA project. And then when I click on a button on Form1, Form2 pops up. I have no idea on how to do this and I was wondering if anyone knew =] Thanks for …

Member Avatar for pilipino93
0
102
Member Avatar for Cory_Brown

Thank you in advance for any help here. This is my first post and I will try to phrase what I am thinking. I am trying to validate the entry of a field based on entry in a second field. If field "A" has value 1, 2, or 3 then …

Member Avatar for Cory_Brown
0
122
Member Avatar for harshadap

I m doing Program for sudoku. The blank grid displayed but how to pass random integer values to that grid. here is my code: [code=java]import javax.swing.BorderFactory; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.JPanel; import java.awt.*; import javax.swing.JFormattedTextField; import javax.swing.text.DefaultFormatterFactory; import javax.swing.text.NumberFormatter; @SuppressWarnings("empty-statement") public class Board { private static final Dimension FIELD_SIZE …

Member Avatar for harshadap
0
126
Member Avatar for staticvoyager

I'm trying to pull in a file name from another class... I have a three classes... My main class, a class called Transaction, and a class called Account. I have two sequential files. "CHECKING.TXT" or "SAVINGS.TXT" that I have loaded into arrays in my main class. I need to pass …

Member Avatar for staticvoyager
0
139
Member Avatar for gretty

Hello I am making a function that takes in a date (dd/mm/yy) & returns what week number of the year the date occurs on. For eg; If I enter: 01/01/09 then the week number of that year will be 1 If I enter: 04/09/09 then the week number of that …

Member Avatar for gretty
0
2K
Member Avatar for elidotnet

Hello, im tryin to build some simple application using C#. im using the datagridview + the binding navigation. when im runing the app im available to delete and editing rows. after i click the save button its look like the app is saved the updates as long as the app …

Member Avatar for kvprajapati
0
213
Member Avatar for anuj_sharma

Hey Guys, Can you please tell me which version of SQL Server is compatible with Vista. I have a Vista Home Premium Service Pack 1.

Member Avatar for sknake
0
59
Member Avatar for papanyquiL

Hi everyone, I'm working on an app that needs to log all of the events of every control and place them into a checkedlistbox. For example, if you click a button on the form, it should show the information in the checkedlistbox like 'button1 Clicked: x amount of times,' and …

Member Avatar for papanyquiL
0
136
Member Avatar for Epi23

Hey everyone, I'm just now learning c++ and was wondering if there was a way to loop this program so that I don't have to copy and paste it. I got it to work, but I was just curious if there was another way to do it. it just does …

Member Avatar for Epi23
0
103
Member Avatar for gopi17

ok...i'm having trouble changing a value in a array into a character [CODE] void gameon(int **game,int &size,int &x,int &y,int &score1,int &score2) { int i,j,num1,num2; cout<<"Please enter a number from the selected row/column -->"; cin>>num1; for(j=0;j<size;j++) { if(num1==game[x][j]) { cout<<"Number found"<<endl; game[x][j]=='X'; score1=score1+num1; y=j; } } display(game,size,score1,score2); } [/CODE] i can't …

Member Avatar for vmanes
0
117
Member Avatar for Baddesley

Hi everyone, hope someone can help. I'm very much a beginner in Javascript and 'ok' in html but just cannot get a new (picture) window to open in Firefox without the title and address bars (or anything else, just the image). IE shows just the title bar, with or without …

Member Avatar for Baddesley
0
1K
Member Avatar for vishalonne

Hi All I am trying to resize the button which is placed in a cell of GridBagLayout but FAILED...:( Like I want same size of every button (Please see the attached file for what I am getting as Output of my Program which is as follow - [CODE] import java.awt.GridBagConstraints; …

Member Avatar for quuba
0
294
Member Avatar for valleymorning

Dear all, Could anyone help me on finding all magic numbers using JAVA with 1000 iterations or less? Magic numbers are 6 digit numbers that have the property that they are equal to the square of the sum of two 3-digit numbers when it's high-order and low-order digits are separated. …

Member Avatar for valleymorning
0
473
Member Avatar for katwalatapan

Hello, I am trying to work learn thread programming in C. I have my turbo C installed and its working fine. I tried to get the library "pthread.h" and relater STLport package by searching online and managed to get them and copied them in my include directory. But while compiling …

Member Avatar for Salem
0
139
Member Avatar for computerfreak97

Can anyone help me. I am trying to create a audio frequency analyzer, that will look for specific frequencies in a wav file. TIA

Member Avatar for computerfreak97
0
51
Member Avatar for Dajer

Hi friends... How can i put index on my records in RMS to increase the rate of RMS??

Member Avatar for Dajer
0
75
Member Avatar for scias23

i just can't figure out what's wrong with this. 1. suppose i enter 9-3-1991 as the birthdate, this should return 18. but it returns 17. //wrong 2. suppose i enter 2-9-1991 as the birthdate, this returns 18. //correct what's wrong with my code? [CODE=java] private static int ageCalc(int mm, int …

Member Avatar for scias23
0
151
Member Avatar for C.O.D

Hello all, i am trying to put table column to array using Visual Basic 2008 form. As i do not need to update back values to database i have used DataReader. [CODE] Private Sub Button1_click (,,,,,,,,,,) Handles Button1.Click Dim cn As String cn="Data Source='C:\Temp\DB\DBaze.sdf' " Dim qry As String = …

Member Avatar for C.O.D
0
120
Member Avatar for staticvoyager

Okay... So I've actually made it to the final project in my Intermediate Visual Basic class. Yet, I'm still feeling stupid - like I've never attempted any project at all. I think my main confusion in this project is that we're using two seperate sequential files. I CAN and HAVE …

Member Avatar for sknake
0
205
Member Avatar for ObanaJunichiro

[code]void inputGrid(string inputI, unsigned __int64 &i,int t) { do { t=1; getline(cin,inputI); i=atol(inputI.c_str()); if(i<=1) { cout<<"Please key in only the number that suitable for the grid."<<endl; t=0; } } while(!t); } [/code] //this is the function i used to solve the problem when i key in char //to an integer...but …

Member Avatar for VernonDozier
0
91

The End.