16,916 Topics

Member Avatar for
Member Avatar for vanathi_vb

Hi, I am using seagate crystal report version 8 with vb application. I need to send this applicaton and crystal report to client place.but they dont have crystal report software.kind of setup is enough or they have to insatll crystal report software.if set up is enouhg , how to make …

Member Avatar for vb5prgrmr
0
101
Member Avatar for liverpoolfc108

Hey! I'm working on this solution that wants me to code an application that displays the highest score earned on the midterm and then the highest score on the final exam. This is waht I have so far but it is not working... Option Explicit On Option Strict On Public …

Member Avatar for Teme64
0
139
Member Avatar for coachD

i want to mix a different fertilizers available in the market to create a new fertilizer WITH MY DESIRED AMOUNT OF NPK(Nitrogen, Phosphate, Potassium)... i can do that in so many ways but i want to get the mixture with cheapest cost. here is an example, ------------------N-P-K Numbers------------COST(Peso) Fertilizer 1-----(24-2-8)---------------------100/bag …

Member Avatar for cafasa
0
129
Member Avatar for Trevor Charles

I am new to VB, I am running VB6 and need to update a number of text boxes from information collected in a loop that is running, is theire an update text box command ?

Member Avatar for vb5prgrmr
0
41
Member Avatar for singoi

Hi Freinds, a Complicated situation for me. i Have a 2 tables in access with the same Field saying BANF_Nr which sees like " -BANF-0001" here this 0001 is an Autonumber like 0001,0002,0003,0004 and so on i have a textbox in Form txtbanf which should call automatically the next number …

Member Avatar for vb5prgrmr
0
171
Member Avatar for headedtomexico

I've been wanting to use ADO in a c++ project i'm working on. I was having some errors on it, and have since reverted to ODBC but i'm finding it rigid, and frenquently frustrating to work with. I'm going back and giving ADO a shot again, but simple pasting the …

Member Avatar for headedtomexico
0
228
Member Avatar for metalclunch

Hello, this is Metalcrunch. I've been learning C++ over the past days and I thought I'd make a calculator. So I looked over the existing code on the internet on how to make a calculator, understood it, then made my own from the very scratch. However, I'm having a few …

Member Avatar for 23.12.2012
0
239
Member Avatar for samuelmoneill

Hi, Does anyone know how to send commands to a shell that is already opened? I know how to open the shell to run a command, but how do I send another command to it? Here is what I can do Shell("C:\Backup\mysqlbackup.bat") This command runs the mysqldump command. But the …

Member Avatar for VIeditorlover
0
103
Member Avatar for wien

Hi I Have created a software program in VB6 that a customer can use to create job cards for jobs within the printing industry. it links to a database so all the information is saved and can be amended or updated or searched. I plan to market this to potential …

Member Avatar for wien
0
103
Member Avatar for dks1383

Hi all I want to set NumberFormat property in DbGrid in Vb6 so the negative numbers be red automatically please help me. Thanks.

0
53
Member Avatar for yash777

hello all, I would like to create a menu named "Category" for word, which has other sub menu's. The user can install this addIn in his word and use it. I know that Visual studio provides AddIn support for word 2003, 2007. But don't know how to code this. How …

Member Avatar for mypicturefaded
0
151
Member Avatar for Piya27

Hi All, I have recently installed Visual Studio 2005 after system recovery... and now when I start debugging any program, it shows me the following error : [b]"Error while trying to run project : Unable to start debugging. The Binding handle is invalid."[/b] Please Help.

Member Avatar for vb5prgrmr
0
39
Member Avatar for oscarresonable

Hi guyZz.. I have a POS project..... how can I stop/pause the spooling of the receipt in the printer??? b'coZz it's too many space in the paper... I need this... urgent......... Any reply/some source are really appreciated... thanks

Member Avatar for vb5prgrmr
0
142
Member Avatar for santhanalakshmi

Hi, This is my code : Dim fullreason As String fullreason = " " Do While Not rswithd.EOF Dim fs As Integer fullreason = Trim(fullreason) + " " + "and" + Trim(rswithd!reason) Print #1, Trim(fullreason) Loop for example : fullreason contain values "10 pencil". i want only "10" from this …

Member Avatar for vb5prgrmr
0
75
Member Avatar for firoz.raj

i want to see all the installed font name using for each loop.i have written a code but it say object required.and it break at bold line. kindly let me know any idiea? [code=vb] Private Sub Form_Load() Dim f As Font B]For Each f In Fonts[/B] MsgBox f.Name Next [/code]

Member Avatar for vb5prgrmr
0
72
Member Avatar for Ombegoh

Hi guys, Am kind of looking for web designers, programmers and system developers and I hope am @ the right place. I am good in the .Net frame work esp ASP & Visual Studio but that doen't rule me out in VB6. I also like using PHP in rapid website …

Member Avatar for ttqtrang146
0
94
Member Avatar for Diamonddrake

What are you guys using for version control in conjunction to Visual Studio? I am currently using Tortoise Bazaar, and it shipped broken, had to edit a file just to get it to run. Other wise its effective, only it is a console interface. and although I know many that …

Member Avatar for Diamonddrake
0
96
Member Avatar for CppBuilder2006

console.cpp: [CODE="c++"] #include <iostream> #include <string> #include <vector> using namespace std; template <typename T> T #ifndef _DEBUG & #endif val(const T& x); class A { private: public: void f(); }; void A::f() { val(1);// deleting val solves the problem } int main() { new A; cin.get(); } [/CODE] general.cpp: [CODE="c++"] …

Member Avatar for Dave Sinkula
0
108
Member Avatar for xuexue

hi guys, just wanna know, how could i download a file using php script? it is possible with visual basic 6 but the problem is how would i do that using php???

Member Avatar for xuexue
0
125
Member Avatar for agent154

[code=c#]using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SQLite; namespace PlayingWithSQLite1 { abstract class Database { #region Member Variables string PATH = String.Format("{0}\\Database\\", Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)); string FILENAME = "test.s3db"; #endregion public string File { get { return string.Format("{0}\\{1}", PATH, FILENAME); } } public static void CreateDatabaseFile() { SQLiteConnection.CreateFile(File); } } …

Member Avatar for agent154
0
113
Member Avatar for seakayaker

Hi, I have developed a lot console applications in C++ using Visual Studio Express and I am curious how much effort it would be to wrap them with a ultra simple GUI? Do I have to purchase MFC or code hunded of pages in order to accomplish this in C++ …

Member Avatar for Stefano Mtangoo
0
152
Member Avatar for agent154

I have a SQLite database added to my project in the solution explorer, named testdb.s3db. What I want to do is reference it in my code without having to fully qualify the path. Currently my code is [icode]SQLiteConnection connection = new SQLiteConnection("Data Source=C:\\Users\\Chris\\Documents\\Visual Studio 2008\\Projects\\ConsoleApplication3\\ConsoleApplication3\\testdb.s3db");[/icode] Can I do this somehow …

Member Avatar for sknake
0
110
Member Avatar for nolesce

I am working on a vb app and am getting this error when calling a form (frmCaseList) from another form(LoginForm). the frmCaseList wasat one time in a different solution where it worked fine (it was the startup form). frmCaseList is also inside a namespace. If I commentout the [icode].show()[/icode] line …

Member Avatar for nolesce
0
385
Member Avatar for thwias1b3008

Hi, I used PostgreSQL and i want to populate its fields in combo box. Is anyone know how to make it. . Please help me. . . it is for my project. . :icon_sad: Here is my code: Dim conn As ADODB.Connection Dim rst As ADODB.Recordset Dim sSQL As String …

Member Avatar for vb5prgrmr
0
221
Member Avatar for avisek_cts

I want to draw a graph in vb6 thta will take data from the database (here it is MS ACCESS) .The databse has a table with 2 columns,How to draw the 2d graph dynamically, I am connecting the databse and vb 6 but an error is occuring Please tell me …

Member Avatar for vb5prgrmr
0
912
Member Avatar for jbfsantelices

Hi to our community! Just want to get some idea regarding the connection setup of SQL Server 7.0, I've been doing an application written in VB6 and I used SQL Server 7.0 as a storage of my database. On my local pc I can successfully connected to SQL and manipulate …

Member Avatar for vb5prgrmr
0
211
Member Avatar for exzibit23

this is the code for tje fading effect of a form.. can anyone explain this code to me.. i really wanna learn this thing.. or do you have any site or ebooks to read related to my problem?? I dont know what book should I read. Is this all about …

Member Avatar for vb5prgrmr
0
104
Member Avatar for nccsbim071

I want to develop silverlight web application. But i could not find installed templates for silverlight projects. I have viusal web developer express edition 2008 and visual studio 2008 team system installed on my computer. what shall i do . Which IDE should i use. Thanks,

Member Avatar for nccsbim071
0
105
Member Avatar for laconstantine

I am playing with function hooking so I wrote simple program that calls DisplayMessage Function which prints out Hello.. [CODE] void DisplayMessage() { cout << "Hello"; } [/CODE] After this one i found the DisplayMessage offset its (0x00131000) now my target is write a dll to change DisplayMessage function to …

Member Avatar for Ancient Dragon
0
184
Member Avatar for iiizuluiii

Im trying to take two different input fields and have a counter count them to see which one would reach my goal of 200 first. Im very slow when it comes to vb. Is there a timer tut that anyone knows of? Is there a base program I might be …

Member Avatar for iiizuluiii
0
77
Member Avatar for redear

help me on how access employee.mdb thru Data Combo and the data will display in txtbox...example in Data Combo will only display employee number and if i press employee number in Data Combo, the name, designation, address will display in textbox..how to code this? can you give me the module …

Member Avatar for redear
0
77
Member Avatar for gingank

Hi guys i have a question need to ask. I create an application for filling up information. After filling if he want to update when press update and fill up active = from yes to No then it will remove the table 1 to table 2 by using the sql …

Member Avatar for vb5prgrmr
0
124
Member Avatar for Petrock6

Hello. I'm a bit confused, and I don't know QUITE how to explain it, however I'll try my best! Anyway, say I wanted to code a API, that would grab a list from ANOTHER program. For example, if I had a small chatting program, and there was a list of …

Member Avatar for vb5prgrmr
0
96
Member Avatar for brieghz23
Member Avatar for siu17

I have been trying the following code for a code to search for a record and display it in a textbox Option Explicit Dim conn As ADODB.Connection, rec1 As ADODB.Recordset Dim esql1 As String Private Sub Form_Load() Set conn = New ADODB.Connection Set rec1 = New ADODB.Recordset conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data …

Member Avatar for vb5prgrmr
0
144
Member Avatar for gingank

Hi guys can you all help me with this. I need to sure will the this idea can be make in vb6. I have a update command button. When click then type the badge id , it will automatic get the data and show the employee name then the rest …

Member Avatar for 9884616532
0
304
Member Avatar for siu17

hi i have been able to update a database using the following code Option Explicit Dim conn As ADODB.Connection, rec1 As ADODB.Recordset Dim esql1 As String Private Sub Command1_Click() On Error GoTo 2 If Text1 = "" Then Command1.Visible = False Command2.Visible = True Exit Sub End If rec1.AddNew rec1.Fields(1) …

Member Avatar for vb5prgrmr
0
97
Member Avatar for iiizuluiii

Hey guys, Im new to the forum, so hello first off. I guess Ill get right to it. Im trying to make a computer program for my xbox 360 clan to download to help us calculate wins in a match. Its call of duty - domination game type, if any …

Member Avatar for vb5prgrmr
0
105
Member Avatar for agent154

OK, so I'm somewhat experienced in Java, and am learning C#. I'm currently on the topic of Inheritance and Polymorphism. What I read is that if a base class has a method that is marked as virtual, then the inheriting class has the choice to override that method if it …

Member Avatar for agent154
0
359
Member Avatar for selsium

I am getting the below errors when I build the file in Visual studio, How can I resolve these errors? anyone can help me? Error 1 error C2660: 'strcpy' : function does not take 3 arguments 129 Error 2 error C2732: linkage specification contradicts earlier specification for 'pro_str_to_wstr' 1405 Error …

Member Avatar for Ancient Dragon
0
571
Member Avatar for cVz

Hi I am writing a web application with VS 2008 standard edition. I just got this really weird error. I replaced a few of the controls on the form from labels to text boxes, and it worked fine , but all of a sudden it shows me the old controls …

Member Avatar for cVz
0
138
Member Avatar for sdmahapatra

[quote]Hi all,I have written a program in c++ using visual studio 2008.I've create only one source file and written all the codes including header files within .cpp extension and program is running well.But I want to split this program like [code] .h extension [/code] be present into the header file …

Member Avatar for sdmahapatra
0
134
Member Avatar for iiizuluiii

so its been a verrrry long time since I messed around with vb. I am trying to make a program for my clan and here is a simple question I hope some one can answer. I am trying to make a button activate a radiobutton to checked if you press …

Member Avatar for iiizuluiii
0
196
Member Avatar for friiday

Hi all :) I am new to the batch file, never heard it before and thus need help from all of your. I need to create a batch file (.bat) that will execute a C# application which is written in Visual Studio 2008. Someone please assist me and give me …

Member Avatar for sknake
0
111
Member Avatar for renu_kj

Hi, Is there an option/ or a formula to generate random numbers without duplication...Currently i'm not storing the random generated numbers in the database. Please help me..its quite urgent

Member Avatar for johnly
0
362
Member Avatar for kinger29

I am trying to create a program that analyzes sports statistics. I want to extract statistics from a website such as yahoo or espn and put it in a database. Does anyone know if this is possible to do with vbscript? Is there an easier way to do this? Any …

Member Avatar for johnly
0
152
Member Avatar for abu taher

I made a queiry. but every data show in this queiry double. I mean every data show two time in this queiry. why this problem occured. any body help me please.

Member Avatar for johnly
0
99
Member Avatar for srivathsa_4

hi, 'm a beginer. . i need a lil help to start learnin VB.. i dont hav much idea about it.. Kindly give me info of which book i can refer.. look fwd for much needed help..

Member Avatar for srivathsa_4
0
215
Member Avatar for ankit007

i am developing an application where i have to break a stream of numbers which are in .txt file and save it into access database.I need to know how to do this in visual basic.I have created a database at runtime and also created table with required fields but am …

Member Avatar for sknake
0
88
Member Avatar for Rajesh Ranjan

Hi everyone, Can any one tell me about the uses of let and get property in VB and how to use it?

Member Avatar for Rajesh Ranjan
0
102

The End.