12,425 Topics

Member Avatar for
Member Avatar for vampiro999

I'm trying to convert a simple program fron vb6. IT's only draggin several pictures with the mouse and drop them into anothet picture (trashbin). If the object picture dropped is a match then the trashbin.image changes to another image But: First, I don't know how to allow drag controls!!!

Member Avatar for Oxiegen
0
237
Member Avatar for beginner_am

Hello, I need help in VB6 : Here is the requirements: a) Browse for new images. Minimum of JPG, BMP and GIF image files shall be supported b) Select images for a new group c) Assign name to a group and save a group in a file or database d) …

Member Avatar for abu taher
-4
153
Member Avatar for KhairilSyahrin

Help me! I just can't seem to get this right. I'm trying to open an Excel file(Template) and put data from msflexgrid into a specific place in the excel file but i just can't seem to get it right. Can anyone help me with this coding? Much appreciated. Thank you …

Member Avatar for AndreRet
0
227
Member Avatar for mustang12

If I hard code search criteria i.e. adodc1.recordset.find "car Like 'corvete'" will work. But if i try to use an entered sting in text box on a form and assign it to a string variable with wildcards in the "find" it does not work. WORKS: Dim test As String test …

Member Avatar for kinwang2009
0
166
Member Avatar for KhairilSyahrin

Anyone know how to implement a timer code? What do i have to do in order to implement a timer? And the timer is one minute and then the vb program continues. thank you so much.

Member Avatar for KhairilSyahrin
0
146
Member Avatar for Niki_Fears

[ATTACH=right]15792[/ATTACH]Google has been attempting to break out of their search engine based box for quite some time by presenting challenges to some of the IT world's biggest names such as Microsoft and Apple. Now with the new App Inventor that Google has launched for Android it is giving developers more …

Member Avatar for Dcurvez
2
430
Member Avatar for realheaven

Hi all, i have a trouble convert Text (have form of Hex already e.g 05 07 3F 04. ..) to Hex then i can calculate those number to draw graph with them. many thanks for any help or instructions!

Member Avatar for vb5prgrmr
0
95
Member Avatar for gurupts

How can i change my vb exe file in to a installable file. That contain the ms access database as back end. Anyone can help me.. Thank you for any help

Member Avatar for vb5prgrmr
0
124
Member Avatar for ChocoCrisp
Member Avatar for abu taher
0
104
Member Avatar for PM312

hi I am trying to add numeric text with [B]thousand seperater format [/B]in three textboxes. Problem is amount after thousand seperate get ignored i.e if text1.text is 1,250.00 text2.text is 3,500.00 and text3.text is 2,100.00 the result in text4.text is 6.00 instead of 6,850.00 Text4.Text = Text1.Text + Text2.Text + …

Member Avatar for AndreRet
0
205
Member Avatar for ChroNoS

I am using the following function to convert ascii to hex, but it is not working properly. [CODE]Private Function HexString(EvalString As String) As String Dim intStrLen As Integer Dim intLoop As Integer Dim strHex As String EvalString = Trim(EvalString) intStrLen = Len(EvalString) For intLoop = 1 To intStrLen strHex = …

Member Avatar for Teme64
0
5K
Member Avatar for KhairilSyahrin

Hi, I'm a student from Malaysia and I am trying to do a program where the program will run and then when it reaches a certain part, it will show a message and pauses the program until the user clicks done/continue/yes button at the message. Flow: Programme running-->Message-->"Please close all …

Member Avatar for KhairilSyahrin
0
266
Member Avatar for amass

Can u pls help me solve this problem iam using vb6.0 and sql 2000. when i insert the currnt date (as Now()) in the dbase with a colunm datatype date/time, it inserts the date 01/01/1900. In MSAccess it works by putting a # b4 and after the date e.g. #25/06/2010# …

Member Avatar for Ionelul
0
295
Member Avatar for WildBamaBoy

How do I get the same result from this Python script in Visual Basic? [CODE=Python] import os username = os.getenv("USERNAME") desktop = "C:\\Documents and Settings\\%s\\Desktop\\" % username print desktop #Result = C:\Documents and Settings\<MY USERNAME>\Desktop\ [/CODE] I already have this, [CODE] Public Shared username As String = My.User.Name 'Gives computer …

Member Avatar for vb5prgrmr
0
144
Member Avatar for Geek_Cyborg

Hello, i need function to Convert Hex numbers to Decimal.. My string is in this form 10,11 and i want to convert it in this 1A,1B.. Thanks

Member Avatar for eng.jawad
0
118
Member Avatar for revpree

Hi, Can anyone please help me in this. i want to retrieve a view in VB.i was able to do with the below script when using tables,but not with view [code] Dim strSQL_revenue As String Set rs_revenue = New ADODB.Recordset strSQL_revenue = " select * from dbo.PLAN_PNL_INTERUNIT_REV" With rs_revenue .Source …

0
48
Member Avatar for KhairilSyahrin

Can anyone teach me how to calculate a mouse click? I need to do a data insertion into MSFlexGrid. The flow is like this: 1:the data will read a text file and input all the data into column 0 2: when user wants to input again, it will be put …

Member Avatar for vb5prgrmr
0
80
Member Avatar for rrush

Simple little exercise using the MonthView Date Picker. I'm trying to loop through print all dates from dateclicked to end of month. I'm getting stuck on the comparison value to define the end of the month. Keep getting the "argument not optional error" or and infinite loop. [code] Private Sub …

Member Avatar for AndreRet
0
123
Member Avatar for KhairilSyahrin

I am trying to incorporate MSFlexgrid to read all the data from a text file but i am currently having a problem with a line Below is the coding Private Sub Command1_Click() MSFlexGrid1.Cols = kiraCols + 1 Open App.Path & "\master_data.txt" For Input As #1 ' linecount = 1 Do …

Member Avatar for AndreRet
0
98
Member Avatar for Member 784548

i want a search command for searching a data in document or database which search any word in the document

Member Avatar for kinwang2009
0
64
Member Avatar for Keegan200

I want to create an activation window to add onto clients pc so if they dont pay their account within a certain period the activation window will pop up and not allow them access to the pc until their account is paid and we will provide them with an activation …

Member Avatar for kinwang2009
0
103
Member Avatar for Member 785440

[CODE]Private Sub Command1_Click() Dim rs As ADODB.Recordset Set rs = New ADODB.Recordset rs.Open "select *from Payroll", Cn, adOpenDynamic, adLockOptimistic rs.AddNew rs!Date = Text1.Text rs!Emp_ID = Combo1.Text rs!EmpName = Text2.Text rs!Father_Husband = Text3.Text rs!Designation = Text4.Text rs!PANNo = Text5.Text rs!PF_PENNo = Text6.Text rs!HRA = Text7.Text rs!Basic = Text8.Text rs!TA = Text9.Text …

Member Avatar for kinwang2009
0
1K
Member Avatar for Graham Morley

Is there a good way to make vba code secure other than using a password, which I understand is quite easy to break?

Member Avatar for Graham Morley
0
95
Member Avatar for lefraso

I would like to design a programm in visual basic.net meet the following requirements: Fibonacci numbers Input limit is 15 Numbers are 0 1 1 2 3 5 8 13 The program must allow input limit Display all generated Fibonacci numbers The sum of all the Fibonnacci numbers Anyone who …

Member Avatar for mnmw
0
218
Member Avatar for 082100
Member Avatar for M.rahul

Hi I'm new to Visual basic. I'm getting an runtime error 424:object not found,When i'm validating between dates in crystal reports.Please correct me where i did wrong.. [CODE]Private Sub Command1_Click() Dim f_date As Date Dim t_date As Date 'From_Date and To_Date Validation f_date = Trim(Format(DTPicker1.Day, "00")) + "/" + Trim(Format(DTPicker1.Month, …

Member Avatar for AndreRet
-1
168
Member Avatar for jhai_salvador

Yoe guys, need your help.. I want to know on how to setup my client computers and the server so they can connect to sql server 2005 Developer Edition. Client computers are Windows XP. Server is Windows Xp installed with a SQL Server 2005. They are on the same Workgroup. …

Member Avatar for AndreRet
0
1K
Member Avatar for jay200032

Hi Everyone, Is there any easy way of changing the default hover color of a Toolstrip button in Visual Basic.NET

0
96
Member Avatar for Tekito

I'm about to write a new program in Visual Basic. I have Visual Studio 6.0, but it's limitations are starting to become a problem and I'm wondering about trying Visual Studio 2008 Express (unfortunately purchasing the full version is not an option). I would hate to get halfway through and …

Member Avatar for pweegar
0
221
Member Avatar for patrickm129

Hello, I am making a *.vbs file and I need help putting two codes in. The first code is to make a .txt file named "Hello World", with the text in the .txt file "Time ... (your time)-Test123" Code: [CODE]myfilename = "\Hello World.txt" MakeHelloWorldFile myfilename Sub MakeHelloWorldFile (FileName) 'Create a …

Member Avatar for patrickm129
0
207
Member Avatar for horserider

Hi.. How to control the gpedit from my vb6 application.. i want to control the GP edit from my vb application... plz help me with coding..

Member Avatar for Pilgrim-Last
0
109
Member Avatar for Smart System

What is wrong in this code ? [code] rs.Open " update TblName set FldNum=" & text1.Text & " where ID_FldName=" & Text2.Text , db, adOpenDynamic, adLockOptimistic [/code] Knowing that FldNum ---> Data type (Number) ID_FldName ---> Data Type (AutoNumber) And What the correct code ?

Member Avatar for vb5prgrmr
0
81
Member Avatar for PoisonedHeart

Hi guys, just wondering, would someone give me some advise of what what kind of software should I develop...maybe just a simple software...or a small software...whatever you call that...a software that would not take a lot of time in the development process...maybe...more or less than 3 weeks...what do you think?.. …

Member Avatar for vb5prgrmr
0
467
Member Avatar for emsd123

Hello everyone, I am currently doing a treeview control in asp.net. I want to [B]load the database from MS Access into my treeivew[/B], but I don't know what should I type in my .apsx.vb file. [B]Please help me with the codes [/B]to make my treeview connect to the MS Access! …

0
95
Member Avatar for WaltP

I've been trying to find out the error returned from [iCODE]MkDir[/iCODE] to no avail. [iCODE]Err.Number[/iCODE] is 0 and I can't find any other error mechanisms available. [CODE] On Error GoTo mkError MkDir txtDir(Index).Text On Error GoTo 0 Exit Sub mkError: On Error GoTo 0 Text1.Text = Str(Err.LastDllError) + " " …

Member Avatar for vb5prgrmr
0
190
Member Avatar for bdell11

I am relatively new to visual basic. I have VB 6 professional complier. I am working to play .wav files in a program. I'm having a problem understanding APIs and functions can you direct me to a beginners tutorial that might help me? Thanks, Bill

Member Avatar for vb5prgrmr
0
332
Member Avatar for sjfebish

I'm having problems loading an image from file. Im using a fingerprint SDK and it has a built in LoadImageFromFile() function. When I try to load my fingerprint image it returns, "A null parameter was supplied". I can load the same image from their sample program and my code is …

Member Avatar for vb5prgrmr
0
60
Member Avatar for Iron_Cross
Member Avatar for hassan_wah

We are converting a Visual Basic 6.0 application to vb.net 2008 and are having an issue, while executing the code under “form activated event”. There is a difference in behavior between form.activate in Visual Basic 6.0 and form.activated in vb.net. In Visual Basic 6.0, the Activate event was raised only …

Member Avatar for hassan_wah
1
437
Member Avatar for cyqrus

just want to design a software that called reminder sofrware. Its like resource project.And ı dont know even how to start. Its gonna be a software that is designed to alert the user of important events that they have input to the program and the program provide a calendar and/or …

Member Avatar for cyqrus
0
184
Member Avatar for jhai_salvador

Hello!.. I am a VB6 programmer and I want to learn basic of C# Programming. So can anyone help me out?.. I just want to learn on "How will I do this in Visual C#".. this is a sample code from VB6, now, how will I do this in C#? …

Member Avatar for jhai_salvador
0
118
Member Avatar for chrizymikz

help me plssss...this is my last sem and i need help because we have a thesis and i need online system..can you help me in my title proposal???

Member Avatar for vb5prgrmr
0
110
Member Avatar for patrickm129

Hello, Can you help me... I am trying to make a vbs file that when you open it, it automaticly takes up the full screen. Do you know a code that will do this? -Thanks

Member Avatar for jhai_salvador
0
303
Member Avatar for Member 785216

Okay so i have to get my VB programme to connect to an access database which i did, just dragged and dropped and clicked. My data base has 3 tables,products, customers and orders. I have to be able to edit, update and delete customers and products. People also have to …

Member Avatar for jhai_salvador
0
91
Member Avatar for shena

Hi friends, I have a form with 8 textfields. Textfield1 is combo box. Thus, when user chooses an item, Textfield2 and Textfield3 automatically retrieve value from DB and fill in the textfields (in lostfocus event). Then, user will add running number behind Textfield3. After that, fill in the rest of …

Member Avatar for vb5prgrmr
0
188
Member Avatar for perfectedhost

Hello, Im creating a programme in access. Its not going to be so i need a license software. Can you build them in vb? Like. If the user enters in a key it checks the server and if it allowed then it activates the software if not then it says …

Member Avatar for kinwang2009
0
90
Member Avatar for kreig12

currently i am creating a project with LAN based connection. Please show me some sample codes for the winsock control in Visual Basic 6[code][/code]

Member Avatar for kinwang2009
0
234
Member Avatar for kheyzee

how can i move images? and then if the image i move is not equal to the other image it returns back to its place?thanks.!

Member Avatar for vb5prgrmr
0
118
Member Avatar for critalk

I'm newbie for using VB. I'm trying to develop code for calculate dimension of part. The concepts are : 1. Get input from user via textbox(Form1) 2. Module 1 take value from Form1.textbox and keep for reference. 3. Module 2 use value from module 1 to calculate 4. Module 3 …

Member Avatar for vb5prgrmr
0
94
Member Avatar for Member 785440

I Want the Sum of column in textbox using vb6 and access After Entering Dates in FromDate And To Date The Sum Of Column BalanceAmount Between These Dates Should Appear in Textbox2

Member Avatar for vb5prgrmr
0
80

The End.