10,992 Topics
![]() | |
Does anyone have a custom function to Remove a child node from a TreeView and move it to another child? That may not make sense, so here's an Example: [code] Private Sub Form_Load() Dim Test As Node Dim Test2 As Node Set Test = TreeView1.Nodes.Add(, , "Testing", "Testing") Test.Expanded = … | |
hi there i want my forms do not move is there any property that sets it at a fixed position thank u very much | |
Hi, I am bound to use VCF15.ocx and need to set printer programmatically. According to the help file it can be done via PrintDevMode property, but there isn't any *working* example available. Any ideas? Thanks! PrintDevMode Property Member of: F1Book, F1BookView Remarks The DEVMODE data structure contains information about the … | |
Hi, I have a custom control that we delevoped, I Added a new property to the control hence breaking compatability. I re-compiled all applications with the new version of the OCX and released them to TEST. All applications passed testing and was delivered to our client. All these app's with … | |
hw cn i enter & save data in a form which is a subset of another form(database) that is already populated. i want that when i update this record it automatically gets saved in the mother database against the respective record | |
Hello everybody, I want to make an installer of my VB6 app so that it installs all the required files, create database, tables, Stored Procs in MSSQL 2000. Is there anybody who can give me some idea on this? Thanks in advance! | |
hi I am facing a problem in vb with crystal report the code is as under : on running it is some showing error in formula mn = Cmb_Mnth.Text yr = Val(Cmb_Yr.Text) Crpt1.Connect = "UID=sa;PWD=;DSN=WORK" Crpt1.ReportFileName = "D:\WORK\REPORT1.RPT" Crpt1.SelectionFormula = "{Emp_Bill.bl_mnth} = " & mn & " " And "{Emp_Bill.bl_yr} … | |
Thank u so much for sending this code,and i appreciate it so much.But i need to be able to move foward by getting thesame code that will save into the database,Others conversion i used were'nt working.Pls help me with the code that will save in to the database(SQL server) with … | |
i am developing a project so it involves working with picture.i have a code in vb6 that can retrieve image from the sql server,the code is this.And i need exact of such code that will be able to save into the DB,to avoid disparity in the binary conversion. Dim CN … | |
I've been using VB 6.0 for a long time and this is the first time that I run into this. When I make changes to a project and try to save it, VB gives a message "File [name of the project.vbp] not found". I've checked that I tried to save … | |
Please I've been struggling to use a [B]datagrid control to display records with check Boxes in VB 6.0 [/B] but which I could not, and has been come a headache for me. Can any kind persons/Gurus help me solve this burning problem? For God's sake. I've been going from site … | |
Hello, I have a question. I work in visual c++ in a document/view arhitecture (SDI application) and i draw some stuff with some opengl functions (cubes, cylinders) but when i hit the "New" menu from the File menu it doesn't erase or clear my drawing I don't know why. Can … | |
Hi, i'm using ms access and i have a table and a form which have the field code_url. I would like to know how can i create a form with a button that i could use to cut string in the field name code_url for example: <a href="yahoo.com?234234234sdef">Episode 1</a><br><embed src="videos/vplayer.swf … | |
Good day to all. I have an existing vb project and my back end is ms access. I changed my database to MySQL and SQL but the problem is I don't have any idea how to connect my VB project to MySQL and SQL throuch ODBC. Your help is very … | |
hi guyzz, i wanted to have two connection using access and mysql in my proj. my access was my main db connection and what ever data in my access will store directly in mysql db when their is internet connection... I declared 2 fuction connection but my problem is the … | |
can i use animated gif instead of bitmap images on the background of my forms? or can i post animated gif on my forms? can anyone tell me how this can be done? need your response thnx in advance. | |
I, i am beginner in VB programming. I am developing a software using Vb as front end & database in foxpro. Can anybody help me to connect entered text in textboxes to database. How it is saved in database & retrieval. I am using DAO tool. Neeraj Pareek | |
pls can anybody help with how to insert a bracket into a string after the count of 3 characters in vb6 | |
hi there, i'm working on something that requires images i have solved how to save the images in the method of uploading.. i researched on how to access a webcam and thats solved... my problem is capturing the image... on the webcam window... i would like to just capture the … | |
Hi everyone. I am a student at University of Eastern Africa, Baraton. I'm majoring in Mathematics and Minoring in Computer Science. I have been given a project to develop in Visual Basic and I am like, I have no idea of how to begin or how to do that question. … | |
Pls i want to generate two report from my database one for duplicate of record based on thumbprint the other for original thumbprint using VB6 and sql server.I need the code.I will appreciate your help. i mean i want to track duplicate of thumbprint in one table and distinct of … | |
i want to use Crystal reports to generate my reports. how can i connect to the server. i am using SQL server as my database with vb6 | |
I have developped a program using vb6 used by a college to store students scores in diferent courses. My problem is that i want to create a button users can use to search for a specific record using the students admission number. I do not have much knowlegde in finding … | |
Hello, I'm trying to open an existing Excel file, and read in some cells. When I run the program to test, it gives me "Compile error: Variable not defined." when it gets to the line: "Set ExcelWS = " (in red). ExcelWB is defined, but not ExcelWS. I followed examples … | |
Hi, i am creating an application. i have menu strip which some items such as notepad, internet explorer, etc. here is the code how i startup notepad [ICODE]Private Sub Notepadmenuitem_Click()Handles menuitem2.click Shell("Notepad.exe",Windostate.normal) End Sub[/ICODE] the probem is that when i click on the item it would open it but my … | |
I'm writing an app in VB with an excel worksheet. At one point I need to solve a set of equations that are not explicit, so I need a numerical solver program. Excel's Solver is supposedly designed for this purpose; however my past experience is that it is very fickle … | |
i was working on a data grid(visual basic) but i could not edit anything from the database. can it be done.help | |
Hi All, Back again looking for some help and guidance, I have a recordset and I want to loop through this recordset until I find the field with the highest date. I am have a basic knowledge of how it should work but I have no idea what way to … | |
hi, how can I read all the names of files present in a folder and store it into an array???. | |
![]() | Hiya, I'm looking for the control that is in Internet Explorer, Tools...Options...Advanced tab. It's class name is SysTreeView32. I have looked everywhere for this control or something similar but no joy. Any help is much appreciated. Gray |
Hi list, After creating a rs with UNION ALL two tables it's possible know record by record the original table source (using any extra SQL feature or something else) SQL = "SELECT * FROM tabA UNION ALL SELECT * FROM tabB ORDER BY field" Set rs = db.OpenRecordset(SQL) Thanks Fernando | |
hi, i have a problem with my form so i have a form with windowstate = maximized now there is a button in that form that if i click on, a new form will be opened. so the problem is that if the new form has been opened and i … | |
Hello, I'm a newbie at VB and am trying to get some help with a process. My code will check an Excel file for dates and store them in a number of variables. Then I want to be able to compare those dates to the current date. I was thinking … | |
Can anybody give me the code to extract files from a zip file to a specified location using VB6.0 | |
I am usually not keen for asking for help in these kind of situations but I am really stumped when it comes to this, all I really need is a good step in the right direction and I should be (hopefully) fine. I am currently writing an airplane seating program … | |
Does anyone knows how to make datasource location of a report fixed like in VB you can use app.path. Can anyone suggest how to do it? Thanks in advance! | |
how to establish connection from vb6 to mssql 2000? | |
hai, I've written a client side code for creating virtual channels in remote desktop protocol. How to write the server side code? I need a COM object or a standard application. Thank you. bk_kiran_kumar | |
preventing existing records in a table from being added in an ACCESS Database | |
What I want to do is when a user selects a radio button on a 2nd form, it will correspond with the first form. Example . . . . . . . . . . . . Say I want to change the last column and the last rows number … | |
I have created a db in access and an access report which I need to open from a form in visual basic. My vb form contains: 2 calendar controls: I would like the user to be able to select a date range to query for the report. 2 list boxes: … | |
For the final project of the year i need to create a digital image processor that removes the noise and increase the contrast in a digital image. Here are the requirements for the project: Program Requirements Input data: The values for the two-dimensional array will come from a file (rawimage.txt) … | |
Hi I am trying to display a table from Access in a Flexgrid. For some reason, the flexgrid only displays the first record from the table and doesnot show any other record! Can someone please help!! Here's the code: Set cmd.ActiveConnection = conn cmd.CommandText = "SELECT WFJob,JobTitle,FLSA FROM Delte where … | |
Hi, I am using the Microsoft ADO Data Control 6.0 and connectiong to my database using Microsoft Jet 4.0. My fields are being outputted into labels. I have a tex box called text1 and a command button called cmdsearch I wand to be able to search through my database and … | |
Hi, I m new member of 'daniweb' i m a student of BCA 5 in india i m intrested in VB,Oracle,JAVA,Networking so Please help me.... I m creating a project like mobile company! i have problem to create table in ORACLE 9i using VB6. I have some problem to give … | |
i am getting data from a database using VB and then parsing it onto an XML sheet. I find that i'm not able to put a string with number/space/any special characters as the first character for a node. Is there any way to escape this rule in XML? Please help | |
Helo everybody How to convert database type from datetime to varchar? and decimal to varchar? Can I use this code? [QUOTE]CAST(now() as varchar(20))[/QUOTE] I use MySQL version 5.0.21 Other question: If I execute procedure [QUOTE]CREATE PROCEDURE `formatdate`(dtDate datetime) BEGIN SELECT date_format(now(),'%d-%m-%Y') AS idate; END $$[/QUOTE] in Visual Basic 6 using … | |
hi i want only that part of a picture which is visible in picturebox the picture may be larger than the picturebox but i want to copy only the visible part anybody help thank u vey much | |
hi i have two forms in the first form i used form2.show and in the second form from1.show but i want to reload form1 again on button click event in form2 is it possible to reload the form as it was first appeared thank u very much | |
Private Sub cboItems_Click() Dim PosOfSpace1 As Integer Dim PosOfSpace2 As Integer ' code to put ItemId into txtItemID PosOfSpace1 = InStr(1, cboItems.Text, " ") txtItemId = Mid(cboItems.Text, 1, PosOfSpace1 - 1) 'code to put The Item value into txtItemvalue [B]PosOfSpace2 = InStrRev(1, cboItems.Text, " ")[/B] txtItemValue = Mid(cboItems.Text, 1, PosOfSpace2 … |
The End.