16,916 Topics

Member Avatar for
Member Avatar for Techbee

Hi all I am creating an asp.net site in Frontpage and want to use Abyss web server for tesing my files. Since Frontpage does not use the virtual server like what visual studio does, it requires a third part virtual server, hence the use of Abyss server. I am having …

0
66
Member Avatar for C41R0

i got one UI that created by java, i take it and generate jar file and when i double click that jar file to open the UI only program, it takes around five seconds, its quite long and my computer is dual core. if the same thing create in visual …

0
75
Member Avatar for tijoseymathew

Hi, I would like to identify the patterns in a picture which is in picture box, the patterns will be of simple shape like a square, traingle etc.. I think if I can access the pixel data of the picture then a basic for next loop will suffice, the memory …

Member Avatar for tijoseymathew
0
202
Member Avatar for gedinfo

Hello, I have inherited an application written in VB6 that does not handle the number of print copies properly. Changing the number of copies to a number other than one(1) results in only (1) print. I am new at VB6, and would appreciate any tips on how to address this …

Member Avatar for Teropod
0
766
Member Avatar for veledrom

Hi, I have encripted password column in my table. I use VB6 code below to check password but it doesn't work. I think i have to call a function to decrypt it. Where and which function do i use in my sql code below with text1.text. Thanks [code] .......WHERE psw=' …

Member Avatar for Jx_Man
0
141
Member Avatar for guy40az
Member Avatar for CoolGamer48
0
153
Member Avatar for jhai_salvador

hi!.. first of ol sory for my bad english.... I have a problem: I want to create a database system using MSACCESS and VB6 that will be on 3 computers connected via LAN. 1. the 2 computer will be the registration section, and the last 1 will be the payment …

Member Avatar for debasisdas
0
137
Member Avatar for reniies

I have developed an application in vb.net to generate reports against a SQL database where I used visual studio 2003 - crystal reports. I need to deploy the same as a setup file to install it in other client PCs where there is no crystal reports or visual studio installed. …

Member Avatar for Jx_Man
0
96
Member Avatar for gary236

Hi, I am unable to create a new database within Visual Studio. I can however create a database in SqlExpress and then see it in Visual Studio, but once in Visual Studio I can’t seem to do anything, e.g. If I right click the ‘Tables’ icon within a database in …

Member Avatar for gary236
0
75
Member Avatar for mdubose

When I build my project, I didn't receive any errors but when running and entering in data, I get this error: [COLOR="Red"]Invalid Login, please try again! System.InvalidOperationException: ExecuteNonQuery: Connection property has not been initialized. at System.Data.SqlClient.SqlCommand.ValidateCommand(String method, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at Login.DBConnection(String …

Member Avatar for ema005
0
242
Member Avatar for ITech

hi i aam trying to develop a project using vb and access i have got a problem i have 3 tables in access 1.Cust info table(fields are listed below) cust id,name,age,sex,country...etcxc(primary key cust id) 2,indate(fields are listed below) custid ,packageid,date,intime,outime(no primary key) 3.package info table(fields are listed below package id, …

Member Avatar for hmehmi
0
788
Member Avatar for originaldaemon

I am trying to create a simple database. Here is the code: [code=C++] #include <iostream> #include <fstream> #include "conio.h" #include <string> using namespace std; struct Station{ string url; string name; string genre; }temp; char userInput; string output; int fileSize; string searchParameter; int index; int results[1000]; int j;//temporary storage for a …

Member Avatar for Salem
0
99
Member Avatar for mykar_88

hi pls help me to fetch the data from the following HTML source code. [code=html] <TR> <TD colSpan=2> <CENTER>[B][U]CS1304[/U][/B]</CENTER></TD> <TD colSpan=2> <CENTER>[B][U]20[/U][/B]</CENTER></TD> <TD colSpan=2> <CENTER>[B][U]49[/U][/B]</CENTER></TD> <TD colSpan=2> <CENTER>[B][U]P[/U] [/B]</CENTER></TD></TR> [/code] i want to fetch the BOLD contents (i.e CS1304,20,49,P) from the source. pls get me the code to fetch it …

0
88
Member Avatar for sunilcta
Member Avatar for debasisdas
0
25
Member Avatar for bhoot_jb

well..my problem is i cant find crystal report in my vb6. And yes..i have also checked the so famous path : common\tools\vb.. but the thing is i had to stop right after accessing tools folder..couldnt find vb itself. is there any solution to my problem? :(

Member Avatar for debasisdas
0
114
Member Avatar for chanthung

I am at the ending part of coding for a Library software but I am unable to move forward as I can’t figure out the way to change the color for DBGrid row. I am using MsAccess as the database. I want the color of a particular grid row to …

Member Avatar for chanthung
0
313
Member Avatar for KingsWeBe

Hi All, I am starting to pursue a change in career to Software Development Engineering. I want to start learning a language. I found a previous Daniweb post on this "which language first?" topic, with good replies, BUT since my ultimate goal is to work for a software development company …

Member Avatar for sarehu
0
180
Member Avatar for Waseemn

Hello All, OK I have a nagging question that I need to put to rest right away, or else I am going to go amok. In Visual Basic you can declare an array without knowing its size, and then redim the array again once the array size is known. Now …

Member Avatar for Alex Edwards
0
152
Member Avatar for nschessnerd

So i have this app that i wrote to get the permissions on a directory and it works fine for small directories. however when i use it on a huge server it freezes when it compiles the file. i know the program is running but windows gets pissy because it …

Member Avatar for nschessnerd
0
89
Member Avatar for Neji

help for this... want to set an attribute of file. 4 status Hidden, archive, system, read only. thank you all... Best Regards Neji

Member Avatar for RockyRhodes
2
198
Member Avatar for ochien

Hi Guys, i need help...can any body know what component name for using table like this... thanks for help.

Member Avatar for ochien
0
121
Member Avatar for vponline

Hey first of all my name is Matt AKA/ visual_productions I just got done compiling a new media player,and a few web designers tools.they are free for public download at my website [url]http://www.vponline.cjb.net[/url] However i didnt come here to spam my link across these forums,I actually came here to see …

Member Avatar for iDeveloper
0
47
Member Avatar for kzdev

The following is a visual basic code [CODE] dim Msg1(5) Msg1(1) = "xMessage1" Msg1(2) = "xxMessage2" Msg1(3) = "xxxMessage3" Msg1(4) = "xxxxMessage4" Msg1(5) = "xxxxxMessage5" For cnt = 1 To 5 Debug.Print Msg1(cnt) Next cnt[/CODE] How can I do the same thing with ANSI C? (Instead of Debug.Print can be …

Member Avatar for kzdev
0
83
Member Avatar for Shadoninja

I ran into a bug on my program that I couldn't find on my own so I decided to transfer my project from Dev C++ to Microsoft Visual Studio. In Dev I got away with [code] string sName; cin >> sName; [/code] But MVS doesn't like doing that. What is …

Member Avatar for Narue
0
181
Member Avatar for rekha gautam

Hello , I'm using access 2003 and i'm trying to save the data of combobox and textbox to the listbox and i want when i click on save button then ,record just added should be highlighted/selected in the list box. how can i do it , can anybody gives me …

Member Avatar for rekha gautam
0
62
Member Avatar for fmwyso

I would like to have an array that is pretty huge along with being able to hold atleast a sentence in each value. I want to be able to check if a string exists inside it (hopefully fast :P). Why? I want a program to read through a tab seperated …

Member Avatar for Narue
0
320
Member Avatar for bhoot_jb

i am trying to install VS6 but it is giving following error. setup has encountered a problem in launching the followning command line: "wpie15.exe" /q:a/r:n. if you have a system directory that contains a % sign, or the directory names *starts* with a space (i.e. 'C:\win95\system'), then setup will fial. …

0
63
Member Avatar for bhoot_jb

i am trying to install VS6 but it is giving following error. setup has encountered a problem in launching the followning command line: "wpie15.exe" /q:a/r:n. if you have a system directory that contains a % sign, or the directory names *starts* with a space (i.e. 'C:\win95\system'), then setup will fial. …

0
82
Member Avatar for vw_eng

Hello Mod, and anyone, I'm building a Human resources app. for my project. In an employee form i have a problem for knowing the employee age. User input the date of birth of the employee and the program calculate the employee age to the present. I don't know the syntax …

Member Avatar for selvaganapathy
0
111
Member Avatar for hkarthik

hi all, I have some doubts regarding this VSTO 2005. Visual studio tools for office(vsto), actually this tool is used for editing and retrieving the settings or information or adding a new property into word, excel.... isnt it? Can we make changes to the applications like word, excel etc.... usning …

0
74
Member Avatar for Shilpa Jain

Hi all, I am searching and fetching the data in a form based on the name entered in the text field. When the submit button is clicked, another form is displayed containing all the fetched data.Right now the functionality works only for the name entered in the textbox. I want …

Member Avatar for Shilpa Jain
0
103
Member Avatar for hawisme000

can any1 here pls help me on how to make a data tree? i dont know where to start.. tried to google.. but i cant understand it pls help me with the basics.. and how to connect on a database thx 2 in advance..

Member Avatar for hawisme000
0
87
Member Avatar for TheBeast32

Could anyone tell me if there is a function like the InputBox() function in Visual basic? I have googled it and come up with nothing. Thanks.

Member Avatar for TheBeast32
0
222
Member Avatar for nicoletonyf

Hello there, I just installed Visual Studio.net 2003 last week. When I try to start my program, the console appear and close as soon as the program ends. What is the setting to keep the console open, so I can see if my program works? Thanks Nicole

Member Avatar for Ancient Dragon
0
379
Member Avatar for amuarica

I'am trying to develop a notification program to notify user on my network that their computer have a worm . The program that I want to develop a can monitor port 135 on windows OS . The system will monitor port 135 on one computer and see wheter there is …

Member Avatar for HammerAway
0
466
Member Avatar for drichird

This is pertaining to debugging VBA macros for Word 2003. I am debugging a document with a LOT of buttons which launch macros. If I place a breakpoint in a subroutine, and execute the macro by running it from the VBE debugger, execution stops at the breakpoint. But is there …

Member Avatar for bushman_222
0
154
Member Avatar for jayem_heh

Elow everyone... can u help me about my thesis project or proposal... tnx a lot can u give me a printer port vb code... and how can i control using computer d lights?? tnx a lot hoping for ur answer and suggestion tnx alot

0
38
Member Avatar for angeeway

hi, I'm clueless about programming but is trying to learn VB6 for a project. The project is this: I have an existing database where data are collected automatically by a SCADA software (a software to collect status of machines etc in factory floor to enable operators to view status from …

Member Avatar for bushman_222
0
106
Member Avatar for ayuji

I am trying to design a birthday reminder pop up, but for having never done coding before it has proven quite challenging. I am currently using this code but the reminder just keep poping up weither there is a birthday or not. Probably a syntax error but cannot find it. …

0
49
Member Avatar for JohnandDixie

Hi, I only joined yesterday. I have a problem with the following code where I get a missing operator error. Could someone please tell me what I am doing wrong. Thanks John '--------------------------------------------------------------------------- ' Function: strbuildSQLstr ' Purpose: Build SQL String to retrieve ADO Recordset ' Paramters: strChoice- string(Good or …

Member Avatar for JohnandDixie
0
115
Member Avatar for Michael Espinos

I'm new to all this and trying to learn as I go along. One task I'm trying to do is to write some VB code that updates portions of one tab of an excel file from another tab in the same file. I want this to work on an ongoing …

0
44
Member Avatar for Michael Espinos

I'm new to all this and trying to learn as I go along. One task I'm trying to do is to write some VB code that updates portions of one tab of an excel file from another tab in the same file. I want this to work on an ongoing …

0
49
Member Avatar for Michael Espinos

I'm new to all this and trying to learn as I go along. One task I'm trying to do is to write some VB code that updates portions of one tab of an excel file from another tab in the same file. I want this to work on an ongoing …

0
41
Member Avatar for Evan M

I have a header file causing me several errors. It contains a class definition, then I have a *.cpp file with the function definitions. Header: [CODE]#ifndef DOT_H #define DOT_H #include "SDL/SDL.h" #include <vector> class Dot { private: int x, y; int xVel, yVel; vector<SDL_Rect> box; bool check_collision( vector<SDL_Rect> &A, vector<SDL_Rect> …

Member Avatar for Evan M
0
521
Member Avatar for nanawan

please help me how to display user name at statusbar? i have 1 table(Login) which is have 3 fields: i)Name ii)Id iii)Password please...please help me

Member Avatar for Jx_Man
0
109
Member Avatar for richsoul

i have a sub fill that add a default value to a second combo box when a value is added to the first combo box in a row. i would like to add default values to all the combo boxes in that row when the first data is added. here …

0
48
Member Avatar for balla4eva33

Okay, I've got two files: a main and a header to go with it. I'm not too far into it yet, but for some reason I'm having problems with the string. Am I declaring my strings incorrectly? Am I missing a header file from installation of Visual Studio? Am I …

Member Avatar for CoolGamer48
0
155
Member Avatar for linux

Let's list pros and cons of each, comparing one to the other in the process. What do you like about VB6 over VB.NET, and vice versa? What do you find easy to do in one, that you have trouble with in the other?

Member Avatar for invisal
0
198
Member Avatar for kenronmax

Hi everyone out there, I am a novice in Asp.net therefore need all your helps. I have to create a multiple search engine similar the Google advanced book search and Amazon book search. It will be multiplied text fields, drop down list and so on. I have the problems connect …

0
55
Member Avatar for mykar_88

hi please explain me the following in VB 6.0:?: 1. webbrowser.busy 2. webbrowser.readystate=readystate_complete 3. webbrowser.readystate=readystate_loading 4.webbrowser.readystate=readystate_loaded 5.webbrowser.readystate=readystate_interactive thank u

Member Avatar for debasisdas
0
103

The End.