199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for raul15791

Hi, I'm new in Visual Basic. Here's a few questions: 1. What is the difference between VB and VB.net 2. Any good ebook you guys recommend for VB and VB.net?? (I've learned Perl, C++ and Java) 3. If I want to learn VB.net do i need to learn ASP.net first? …

Member Avatar for sendoshin
1
2K
Member Avatar for ViRiPuFF

Hi I'm using MS Visual Basic 2005 Express Edition and need to open an Excel File. I'm using the following code [code] Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim xlTemp As Excel.Application xlTemp = New Excel.Application xlTemp.Workbooks.Open("C:\Documents and Settings\TAP\Desktop\Post\Test.xls") End Sub …

Member Avatar for bruce2424
1
497
Member Avatar for paynekiller

hey all, i'm a newbie to C++ programming and i'm having some difficulties implementing this singly linked list. what it has to do is accept: nickname email address number of kills and store them in a node of the linked list in order according to number of kills. here's what …

Member Avatar for findsyntax
1
121
Member Avatar for xcesmess

I'm fairly new to the C++ world (did some C work in the past years ago) so I'm a little rusty on some things :) I've got a small table in a database and I'm trying to grab some date information out of a UNIX EPOCH time stamp (all seconds). …

Member Avatar for Ancient Dragon
1
111
Member Avatar for sciwizeh

is it possible to use the Dev-C++ compiler with Netbeans? if so how, i can't find anything that explains it.

Member Avatar for sciwizeh
1
387
Member Avatar for ChroNoS

I am still very new to C++ and I'm a bit :confused: too. I am trying to make a program which takes the ascii string from a text file and converts it into binary. I have been able to come up with this code so far: [ICODE] #include <iostream> #include …

Member Avatar for ChroNoS
1
111
Member Avatar for coolkeg

O.k i searched the site but didn't find anything related to my problem. all ive done is made a simple calculator using the "else if" command. I'll post my coding and compiler errors below. [code] #include <stdio.h> main() { int valid =0; char operator; float number1,number2,sum; printf("calculator\n"); printf("number\t operator\t number"); …

Member Avatar for Aia
1
128
Member Avatar for r.ranu1

I am getting the error message "segment _TEXT exceeds 64 k" when i am linking my program in borland turboc3 3.0 compiler. Can anyone suggest a remedy for this. I have tried reducing some lines of text from my program but to no help and now i can't reduce any …

Member Avatar for Duoas
1
145
Member Avatar for sciwizeh

ok, so i've been working on this project for a long time now, a falling sand game, on and off. it works [I]almost[/I] the way i want it too... 2 problems, one i don't think this community will be able to help me with, the other, the optimization, i have …

Member Avatar for sciwizeh
1
363
Member Avatar for CoolGamer48

I'm writing a program for a contest (it's a demo, not the actual thing - so I'm not cheating by asking for help - and my question isn't directly related to the algorithm they want anyway). To submit a program, you send them the .cpp file, and they execute it …

Member Avatar for CoolGamer48
1
135
Member Avatar for CoolGamer48

A friend of mine recently asked me how one would convert a .bmp font to a .ttf. I said I was unsure, but it got me thinking to how I would code a program to do that. How would someone who wants to create a .bmp to .ttf converter go …

Member Avatar for ArkM
1
145
Member Avatar for ShawnCplus

As many of you that have worked with VB.NET know, and have been irritated by, you can't use a nonconstant variable to size an array. A simple workaround, reply if this is a problem, is to take input on the size of the array (Yes, I know you can't do …

Member Avatar for leveena
1
139
Member Avatar for Jemjoo

Hello, I have an problem with updating a database after I have deleted or edited a database row in VB.NET. When I insert a new row it works well. When I delete I get the following error message: [I][COLOR="Red"]Update requires a valid DeleteCommand when passed DataRow collection with deleted rows[/COLOR][/I] …

Member Avatar for RipperJT
1
264
Member Avatar for Gromnie

This is the first program that i've written myself, i've been using one of those learn C++ in 21 days books and links from daniweb to learn. Using daniweb is a whole lot less boring than reading that crappy book. I'm just looking for a review, some advice, anything about …

Member Avatar for Ancient Dragon
1
134
Member Avatar for perfectlover09

Hi. Im new to programming and to this website and i need help with one of my assignments. The instructions for the assignment are to "write a program that uses an array of student structures to answer inquiries. Using a menu-driven user interface, provide inquiries that report a student's score, …

Member Avatar for Ancient Dragon
1
229
Member Avatar for sdimantova

I am making a program to list all files in a listview (currently it lists the file name, file path, last access date, and size) in a specified directory, and I want the user to be able to select files using checkboxes, click a delete button, and see those files …

Member Avatar for KillerOfDN
1
716
Member Avatar for Shadow14l

I just need some code that will return a string of the name of the current activated window title/name. I've spent almost hours looking for a simple example though... ================================================================ I've seen other people say to hook windows messages and listen for wm_activate, and others... I already have when to …

Member Avatar for Shadow14l
1
16K
Member Avatar for virtual008

I'm learning C and can someone tell me if I'm doing file input right? I know file and user input can be insecure because of buffer overflows. [code=C] #include<stdio.h> int main(int argc,char *argv[]) { FILE *file; char c; int lines = 1; if(argc == 2) { file = fopen(argv[1],"r"); if(file …

Member Avatar for ArkM
1
275
Member Avatar for Nithya.G

how to create dynamic menu using c# in asp .net. i need with codings.. or with example. Thanx in advance Nithya

Member Avatar for Nithya.G
1
106
Member Avatar for shuey79

Attached is the vb project that I came up with last night. I made this program for a game that I am making with requires constant chat between to computers. My problem: It works for the first message but when I try to send the second message it gives me …

Member Avatar for lukabrol
1
147
Member Avatar for SunshineLuvr

I am writing a payroll program with inheritance for a school assignment that has the following requirments: [B]Expand the Employee Payroll program to include hourly based and salary based employees. This phase uses an array of employee objects, inheritance for different classes of employees, and polymorphism for salary computation. The …

Member Avatar for mitrmkar
1
585
Member Avatar for inampudi

Hi, i want to upload a excel file and insert those data into mysql. i did in core java , just displayed excel sheet data into output. can you plz tell me how to do in jsp.. if possible send me the code

Member Avatar for peter_budo
1
77
Member Avatar for grayCplus

here is my code, im still getting an error and had no idea what to do! what im trying to do is to make 4 function to get the total net of a certain employee, wherein I could loop and used the form as many times as the no. I …

Member Avatar for Nick Evan
1
140
Member Avatar for sarehu

What do you think of this? [url]http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml[/url]

Member Avatar for Nick Evan
1
147
Member Avatar for titaniumdecoy

I am writing a chess game to familiarize myself with the C++ language. I have a Board class which contains a 2D array of pointers to Piece objects. I want to implement Board::operator[] such that the following is possible: [CODE]Board b; Piece *p = b[0][0];[/CODE] I could just return a …

Member Avatar for titaniumdecoy
1
123
Member Avatar for k2k

hi, i had a few unix questions that I am not sure about the answers. if anybody can give a try... that would be great. 1. In sed, when you do pattern matching, the largest pattern is always matched first, left to right. True or False 2. The command tr …

Member Avatar for masijade
1
533
Member Avatar for nelledawg

Ok so here is the code I've written already, as well as the errors I get when I try to build. Please help me figure out what the problem is! [code=c] #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define COMPANY "Rocklin Realty" #define TRUE 1 #define TAB 25 void …

Member Avatar for jephthah
1
263
Member Avatar for Aigini

When we click on a combo box, there is a small triangle on the upper right of the combo box. When we click on the triangle, the Combo Box task box appears. How do we change the default name of the Display Member and the Value Member? The names of …

Member Avatar for naz82
1
108
Member Avatar for ederX

Ok, im pulling my hair out now...Im new to c++ but this one error is eluding me. Probably due to the fact that I'm still trying to understand pointers. Can anyone point me in the right direction to fix this error: [CODE]request for member ‘outputData’ in ‘*(employee**)(& emp)’, which is …

Member Avatar for VernonDozier
1
619
Member Avatar for arupa
Member Avatar for Jx_Man
1
102
Member Avatar for s_susanta

im Indian a novice and in php. I installed the wamp server2 that has the apacheserver,phpmyadmin and mysql but when I try to connect mysql through PHP code a error message is comming so I cnat connect mysql. can someone help me. Thanks Susanta

Member Avatar for kvdd
1
88
Member Avatar for Alex Edwards

I found an interesting question on the internet... An interviewer asked a programmer "How would you divide without using division or multiplication?" And the programmer came up with some weird bit shifting operation that did the division. Now, I'd like to make a program that does something similar, since-- int …

Member Avatar for Alex Edwards
1
383
Member Avatar for grvs

In C,how to define an array which is of a length specified by the user? I tried writing a code, but outputs were strange. Sometimes first two elements are correctly displayed, sometimes only first. Other seems some random values (extremely large sometimes). May be the problem is in initializing the …

Member Avatar for grvs
1
728
Member Avatar for masoud87

hi all i have a program for reading/writing files using windows API this program works properly but i have problem with program speed the time of reading the file is good but it takes very more time for writing the file here is the standard source code that my program …

Member Avatar for dougy83
1
116
Member Avatar for Jade_me

Please help me i try to display all instances of SQL Server in a combobox. Any help is greatly appreciated.

Member Avatar for Jade_me
1
112
Member Avatar for Sawamura

i found my file in vb 4/5 and i want to convert them into vb.net. How i can convert my vb project in vb version 4 / 5 to vb.net? or i must to use convertion tools?

Member Avatar for Sawamura
1
113
Member Avatar for zantex

Hi there guys! Can someone help me with the part add tour,when I run it, its always print the same line 2 times and then when I enter the data for guide tour which should be store in the memory, but when using the display method it didn't appear like …

Member Avatar for zantex
1
173
Member Avatar for itebooks

You can download most popular and new IT ebooks (team lib ebook,java ebook,.net ebook,C# ebook,linux ebook,jsp,c++,vb.net,etc.) FTP serverIp: [url="http://www.itebooks.net"]www.itebooks.net[/url] userName:test_itebooks passwd:bestitebooks port:2121 Download speed is 5k/s,Max user is 40. To obtain a more fast download account,please visit Web site [url="http://www.itebooks.net"]www.itebooks.net[/url] for detail. Just one month for free,Enjoy! ITeBooks Web site …

Member Avatar for curlyjoe
1
920
Member Avatar for VernonDozier

Some similar recent threads have reminded me that I've been wanting to ask this for a while. I would like to declare a 3-dimensional array that uses contiguous memory so that I can calculate memory offsets from the base array element ([ICODE]x[0][0][0][/ICODE]) and use pointer arithmetic to access any array …

Member Avatar for Prabakar
1
2K
Member Avatar for Tyreses

After several hours of searching the web and the student MSDN archive in Visual Studio.net i cannot figure out through the random blabber of sample codes how to do basic connections using TCP socket connections through a client and a listener. I got the jist that winsock had become outdated …

Member Avatar for lee_suko
1
181
Member Avatar for AHMADI110

how programing a text editor by c program answer me my mail :<snipped email>

Member Avatar for jephthah
1
77
Member Avatar for november_pooh
Member Avatar for november_pooh
1
91
Member Avatar for johnroach1985

Hiya people been working on a new project.You guessed right a RSS reader for podcasts....I have been able to reach and read text from a sample code I found.But because I am quite a noob I couldn't figured it out how to work it for podcasts... Here is the code: …

Member Avatar for o.narasimharao
1
191
Member Avatar for Leil@

[B]I need a program which convert infix to prefix using stack in c[/B]

Member Avatar for jephthah
1
99
Member Avatar for bgbnbigben

So, this is what ive got. Im trying to create a depth first search algorithm, but the problem is ive never been taught this - i dont do programming at school or uni, i try to teach myself but i need help sometimes. Im using a fairly simple iterated method …

Member Avatar for bgbnbigben
1
177
Member Avatar for VernonDozier

I am trying to write a simple "Hello World" to the console. I created an empty C++ project in Visual C++ 2008, and added this one file: [code=cplusplus] // main.cpp using namespace System; int main () { Console::WriteLine("Hello World"); return 0; } [/code] I get this error: [code] Error 1 …

Member Avatar for VernonDozier
1
3K
Member Avatar for brr

how to get names in alphabetical order from the data base in the form of dropdown list when user enters alphabet in the text box... i think this is possible using AJAX programming, if any body konws pls guide me thanx,

Member Avatar for camspiers
1
96
Member Avatar for o0DarkEvil0o

Hi all! I found that is difficult to search a simple javascript code about scrolling image slide. You can find them on Internet but they often are long and complex or hidden from us to prevent edit. I just found a simple way to resolve this. I hope it will …

Member Avatar for ~s.o.s~
1
150
Member Avatar for l1985

Hi there I'm having a problem with gcc The code compiles just fine ,but it doesn't run I have a printf next to main but it doesn't even do that The code is supposed to be an http server ,implemented using Berkeley sockets ,but that doesn't really i just want …

Member Avatar for Salem
1
102
Member Avatar for Confused@JS

I need help positioning my sidebar on my browser. Every time I scroll down the sidebar follows down the screen causing me to lose half the info on the sidebar and only showing what fits in the screen. It has became a really pain in the @ss and I would …

Member Avatar for mikki2
1
221

The End.