10,987 Topics

Member Avatar for
Member Avatar for honeybee2090

i have 1 text box and 1 button in my application text box have items like this 24.192.72.54:27799*71.163.168.187:40807*93.31.71.187:2541* 24.140.130.144:49251*76.15.157.93:16811 now what i want to do? when i press button then txt change in to this format , like this 24.192.72.54:27799 71.163.168.187:40807 93.31.71.187:2541 24.140.130.144:49251 76.15.157.93:16811 some when can help me? please

Member Avatar for AndreRet
0
265
Member Avatar for cempli.branom

I wrote code Private Sub cmdok_Click() Dim rs As New ADODB.Recordset Dim strSql As String Set rs = New ADODB.Recordset rs.CursorLocation = adUseClient rs.LockType = adLockOptimistic rs.CursorType = adOpenDynamic strSql = "SELECT * FROM tb_absensi " & _ " WHERE nrp='" & cmbnrp & "'" & _ " AND tanggal …

Member Avatar for AndreRet
0
179
Member Avatar for shena

Hi there experts, I would like to know that is there any way to filter data in vb6 (data grid, flex grid or etc) as we do in excel spreadsheet? If no, can anyone suggest how to filter records in data grid pls? I'm nw to this. Please help anyone. …

Member Avatar for V0lcan1c_A5h
0
1K
Member Avatar for PM312

I have 3 tables in which one column name is common for all i.e PRNO .I want to write SQL query to select everything from Table1 where PRNO is 500, Table2 where PRNO is 500 , Table3 where PRNO is 500 . “Select * from Tab1,Tab2,Tab3 WHERE PRNO=500” Getting Error …

Member Avatar for PM312
0
163
Member Avatar for Bile

-->>Hope all is well... -->>I'm trying to print all records in my list view on my form I went through the tread http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/431714/print-from-mshflexgrid-in-vb-6.0 and tried a couple of eamples it was cool and nice but what comes difficult to me is that my form has List View and not the …

Member Avatar for AndreRet
0
2K
Member Avatar for Bile

-->>I hope all is well,I'm developing an application that stimulates the Computer monitor and so I have lots of buttons more likly as on my Monitor here. -->>I got stuck when I added a Slider on my Vitual Monitor,this is for adjusting Brightness on the Monitor whether high or low... …

Member Avatar for AndreRet
0
605
Member Avatar for MaddTechwf

I've been working on getting a basic VB ASP.NET application put together that uses LDAP to login and I have it working. The login page has a form on it for login but the actual code for the login is inside my web.config file. When the user clicks login it …

Member Avatar for hollystyles
0
1K
Member Avatar for frnds2vivek

Hi, A graph is getting plotted in a Picture Box with real-time field values. I want to print the graph in real-time, say in every 10 secs. Tried the following : Printer.PaintPicture Picture2.Image, 0, 0 Printer.EndDoc but this didn't worked..... help plzzz....

Member Avatar for AndreRet
0
184
Member Avatar for jayrbete

Please help me for my problem in adding and retrieving video from mysql to vb 2008. I don't know the codes for it.

0
136
Member Avatar for jane.frasier

I have an Access database that I upsized with the wizard wishing to continue using Access for the Front End. I want to be able to connect to the SQL database without having each computer setup for the DSN. I added this to the autoexec macro. Function autoexec() On Error …

Member Avatar for AndreRet
0
179
Member Avatar for joshenahj.07
Member Avatar for pao286

i created a game program using vb6 and i finish it already my problem is how can i make this program ready to install in or become installer.

Member Avatar for CJ_Pyro
0
6K
Member Avatar for ShosMeister

Been fighting with this for a while. Office 2007 and Adobe Pro 10. Have VBA code to step through a directory tree and print .doc and .docx files to PDF Printer (set as default). Code runs fine but when I try to open the file, Adobe says it can't because …

0
38
Member Avatar for esraa90

I'm beginner with vb6, i want help to create vb6 application store data in sqlserver8 Could you give me example for windows application?

0
36
Member Avatar for sanket044

{Prescriptions.GlsType} Like "SV" and ( ((IsNull({Prescriptions.R_DV_CY}) and {Prescriptions.R_DV_SP}="+2.00") or (IsNull({Prescriptions.R_NV_CY}) and {Prescriptions.R_NV_SP}="+2.00") or (IsNull({Prescriptions.L_DV_CY}) and {Prescriptions.L_DV_SP}="+2.00") or (IsNull({Prescriptions.L_NV_CY}) and {Prescriptions.L_NV_SP}="+2.00")) ) i am having this type of recordselection formula but when i execute this if the First condition ***[((IsNull({Prescriptions.R_DV_CY}) and {Prescriptions.R_DV_SP}="+2.00") or ]*** becomes true then it is giving output, …

Member Avatar for AndreRet
0
169
Member Avatar for elmer0727

Hi, Please help on this. How can I let the buttonmenus shows when the toolbar menu is clicked? Here is my code: Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button) Select Case Button.Description Case "Maintenance" 'I want to display submenus when this is clicked! 'button menus: '1.) Employee '2.) company '3.) department …

Member Avatar for AndreRet
0
643
Member Avatar for luckynisarg

i am doing a project which will display real time ECG(electronic cardio graph) of the patient in vb6. i doint have any idea how can we use serial communication data to plot a continuous graph. thank you.

Member Avatar for AndreRet
0
58
Member Avatar for navogatoo

How can I make ONE database be updated from multiple terminals connected through a LAN network? How can I access the database through a LAN network in visual Basic 6?

Member Avatar for AndreRet
0
546
Member Avatar for VisUaLBAsiCNewb
Member Avatar for michael.vanrooyen1

i want to change the path so it saves to the current file location. so lets say my current file is 'Z:\cdrfiles\myfile\123'then it should save to the current file open Dim SaveOptions As StructSaveAsOptions Set SaveOptions = CreateStructSaveAsOptions With SaveOptions .EmbedVBAProject = True .Filter = cdrCDR .IncludeCMXData = False .Range …

Member Avatar for AndreRet
0
277
Member Avatar for TylerTCF

Hi Everyone. It's been a while since I was on here last, but ran into an interesting problem with a nested for loop that I cannot solve. Hoping someone here will know the answer. I placed breakpoints in my code at the For x=1 to 10 line and after to …

Member Avatar for TylerTCF
0
297
Member Avatar for dyanmorry
Member Avatar for BitBlt
0
279
Member Avatar for consc197

Hello, I want to search a specific column in ListView. I've coded searching however it always defaults to search the first column, how can i specify which column to search? Here is my code: Private Sub btnSearch_Click(sender As System.Object, e As System.EventArgs) Handles btnSearch.Click If txtSearchThoughts.Text IsNot "" Then 'ListViewSearch.Focus() …

Member Avatar for AndreRet
0
132
Member Avatar for Bile

-->>Hi everyone,I'm having this problem with updating records in my application my code is: SQL = "UPDATE Ministers SET User_Name='" & txtUser_Name.Text & "',Password='" & txtRetype_Password.Text & "',Prefix='" & cmbPrefix.Text & "',Passport='" & NewPicture_Name & "';" Call dbConnect Conn.Execute SQL Conn.Close Set Conn = Nothing -->>The SQL and Conn variables …

Member Avatar for Bile
0
1K
Member Avatar for stackOverflow

[FONT=Comic Sans MS]Hi everyone, I'm shreya. I'm doing my bca (bachelor in computer applications)-4th sem. I'm required to do a mini project on dbms using msaccess and backend as vb. I'd be glad if you can suggest a project. I have 3 months to complete this project. I hope I'll …

Member Avatar for MonishaBala
-3
568
Member Avatar for consc197

I need some help with the following. I have a form called frmMain that has a couple of icons, one of the icons when clicked loads frmNotes within a Panel, frmNotes has a ListView and i want to load data from a Microsoft Access Database Table into the ListView I've …

0
85
Member Avatar for Skate Bart

If I install a program that was created by Visual Basic 6.0 (via Package and Deployment Wizard), and install it on my computer, is Visual Basic 6.0 need to run that installed program?

Member Avatar for AndreRet
0
170
Member Avatar for ksf.110

I'm Kashif. I have some columnaised data in some 100+ workbooks; whereas each sheet contains some 25,000 rows. I want to use some particular rows where numeric (e.g 3009223468) or some name is repeated. Then these rows to be copied in a new sheet getting the name from the repeatitive …

Member Avatar for AndreRet
0
45
Member Avatar for jane.frasier

I used the upsize wizard in Access 2010 to split my database with the table being on the SQL server. I entered this in the autoexec (was macro, I converted it) Function autoexec() oConn.Open "Driver={SQL Server};Server=JCPLMSQL01;Database=TestingConnection;Trusted_Connection=yes;" DoCmd.OpenForm "Form1", acNormal, "", "", , acNormal autoexec_Exit: Exit Function End Function I don't …

Member Avatar for AndreRet
0
132
Member Avatar for Jaseem Ahmed

i want to make my project's look like windows 7 have..means glass interface, and buttons, all controls graphics like windows 7. i have searched alot, but i could not find...can u help me regrading this?

Member Avatar for fawazchughtai
-1
697

The End.