16,916 Topics
![]() | |
Hi Everybody, I've created some PPT files & converted it into pps fils. Now what i need is, I've designed a VB form which offers menu for the users displaying list of contents. If, a user clicks on any one list from the menu, that particular pps file must display … | |
Hellow everyone Could somebody show me some code Searching/Finding record on a Database Access. example when i type in textbox1 the last name and first name all the record will be displayed on datagrid and when no record is found it will generate message that the record dont exist. Plss … | |
I have created a header file and a main.cpp file in Visual Studio C++. I have the concept down but i'm not sure that my program is written correctly as it is failing with teh following error; error C2447: '{' : missing function header (old-style formal list?) I want to … | |
[CODE]Option Explicit Private Sub cmdExit_Click() End End Sub Private Sub cmdRun_Click() Dim num(19) As Integer Dim i As Integer Dim sum As Integer grd.Rows = 2 grd.Cols = 2 grd.Clear For i = 0 To 19 Step 1 num(i) = InputBox("Enter any integer") lstno.AddItem (num(i)) Next i grd.TextMatrix(0, 0) = … | |
Hi Iam a Graphic designer and now i want to learn VB (software development) New to vb not know anything about that and iam quick learner any Help is appreciated. from where i start to learn. which software i download vb6? or vb studio? Thanks in advance.:icon_smile: | |
im working on a program written on vb 6. i actually want to implement a gif to work on my program. by implementing, i mean how to make a gif file work on vb 6. thanks!:) | |
So I was looking at this problem , and in monodevelop (and Visual Studio). But for somereason I keep getting unreachable code or error in Visual Studio, I retyped and relooked over my code but I cant seem to find what the mistake is that I can run my code. … | |
Hi, im looking for some advice/guidance with regard to visual basic. Im and final year engineering student and my project requires me to make a graphical user inter phase to teach aerodynamics. I need to find out how to link the programme i design through VB with excel. Then the … | |
I found an old thread that had never been answered here - [url]http://www.daniweb.com/software-development/vbnet/threads/330981[/url] Basically, the guy was asking how to retrieve database names and/or table names from a MySql database with vb.net. Here's my answer to that. Yes, I still use vb6 because vb.net is not much better and I … | |
Alright, I have a members area, area.php, and I used mysql to find the userlevel and display content depending on the userlevel, 1 for user, 2 for admin. I made it, but it displays both the user and admin for 1, and 2. [CODE]<?php // Members Area // session_start(); $usernamee … | |
Hai all,, Currently I'm writing code in ASP.NET using VB language. I got an issue regarding dropdownlist. In my form, I have a treeview and a dropdownlist which are populated with data from database. When I click a node in treeview, the dropdownlist should be populated with values based on … | |
![]() | Hi. I have a data grid view with some records and i want to edit the record in datagridview by choosing data from combo box in the datagridview. So can someone teach me how to add the combobox inside the datagridview? thnx. |
Hi all! I'm playing around a bit with my old Visual Basic 6.0. I'm working with images, and this rather strange error came up: First I isolate a small piece of a larger picture to a smaller picturebox using PaintPicture: [ICODE]picBoxSprite.PaintPicture picBoxResource.Picture, 0, 0, 64, 64, (X * 64), (Y … | |
[CODE]Private Sub CalendarDetail_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO: This line of code loads data into the 'PayrollDataSet.Calendar' table. You can move, or remove it, as needed. dp1.Value = Now EditRecord = False If Trim(txtRecNo.Text) <> "" Then Me.CalendarTableAdapter.FillByRecNo(Me.PayrollDataSet.Calendar, txtRecNo.Text) End If End Sub[/CODE] an error … | |
Hi dani sir, I just downloaded your simple SIMPLE SOURCE CODE FOR MIG33 (with mig33 contol.ocx) I want to access is full,I saw many developers are making unique software of mig33 by using your ocx. I saw in that project you given : [CODE]Private Sub cmdMail_Click() kirim mig33Controls.SendMailToNick(tUname, T_target, t_text) … | |
uhm. im new to visual basic 6. im making a maze program, ones like those that pop up a scary picture or something. im having a bit of a trouble with calling a sub thing.im not really sure if thats what you call it. program runs this way, as i … | |
I tried to test Nehe's lesson 6 project. After I copied and pasted the source code, I compiled it and got the result below; ------ Build started: Project: TugasOpenGl2, Configuration: Debug Win32 ------ Compiling... Tugas2.cpp c:\program files\microsoft sdks\windows\v6.0a\include\gl\glaux.h(17) : warning C4068: unknown pragma c:\program files\microsoft sdks\windows\v6.0a\include\gl\glaux.h(374) : warning C4068: unknown … | |
i want to disable some letter in a keyboard. How can i do it using VB6 code? cant you pls help me... | |
good day.. i was installing a system made in vb6 and when i ran the program.. i recieved this mesage, "this application was created with an EVAL version of APEX True DBCombo Pro 5.0" can anayone help me??? tnx in advance | |
how do i copy a value from a combobox (vb6) to an oracle(9i) database table? | |
I'm looking to further my VB skills but have a writers block on what to create. So if you have any idea or suggestions which i could use for my next project please post a reply. Thanks | |
hello everyone. i read about the functions abswrite() or absread() etc, but these fucntions are not supported in modern compilers. i would like to know what are the modern alternatives of these functions in c++?? btw i am using visual studio 2010 and rad studio xe. | |
I have two projects: [B]SQLtesting[/B] and [B]Controls[/B]. Their physical locations are: C:\My Documents\Visual Studio 2010\Projects\SQLtesting\SQLtesting\ [forms reside here] C:\My Documents\Visual Studio 2010\Projects\Controls\Controls\ [forms reside here] The code shown below works fine. I run it from the project SQLtesting. It loads a listbox and a checkedlistbox with the controls found on … ![]() | |
i have a case study about election aND i want to make a election that can call a picture | |
how to generate a report based on between dates | |
i wanna use the Sleep fucntion in a CLR vc++ app, if i include windows.h it gives a huge list of errors, if i use _sleep() then it dowsnot work at many systems since its obslete. what should i do? i am bound to use CLR bcoz my code uses … | |
[code] #include <iostream> #include <cstdlib> #include <ctime> using namespace std; int main () { int guess; unsigned int seed = time (0); srand (seed); //different spot?// int upperBound; int lowerBound; int range; char c; bool done = false; do { bool found =false; upperBound = 101; lowerBound = 1; do … | |
Hi all! I am using Visual Studio 2008 and I was wondering is there a way to get the colour of text in a menu item to change color during a mouse over. So for example, if I was cycling through a list of items, the item that was currently … | |
i need a sample program to implement synchronization concept for a website... i have an application connected with oracle database. i have to open the same application simultaneously in two visual studio ide to perform the same operation or different operation accessing the same database in a synchronized manner using … | |
Hi guys/gals, I've recently developed a piece of software and it currently uses 1 external .txt file (located in the bin\debug folder of the project folder) that is used to store data long term. The program works wonderfully when i use the visual studio 2008 debugger, but when i either … | |
I got many things try but it always an error somebody know this problem? i want to delete all data using only one command button. :( | |
i have a problem in VB6. i have a frmMain, DataEnvironment and Datareport. My form have thirty (30) textboxes to fill-in. at first it all works fine since i filled in only few txtboxes, but when i filled-in all textboxes with many data i could not save the data anymore... … | |
Ok... I know that this is probably a stupid question.. but does VS2010 have a built in C# dev enviroment... I looked and looked, then googled and googled and I can't find if it does or not.... btw I'm using the free profesion student edition from [url]https://www.dreamspark.com/[/url] if that's any … | |
Ok, here is what I am trying to do, it is basically a card maker. I need to be able to save the finished products in a single bmp with all text and both the card background and card pic (the area in white which will be able to have … | |
I have two projects: [B]SQLtesting [/B]and [B]Controls[/B]. Their physical locations are: C:\My Documents\Visual Studio 2010\Projects\SQLtesting\SQLtesting\ [forms reside here] C:\My Documents\Visual Studio 2010\Projects\Controls\Controls\ [forms reside here] The code shown below works fine. I run it from the project SQLtesting. It loads a listbox and a checkedlistbox with the controls found on … | |
I am having trouble debugging in sharepoint. It is acting like I am debugging a different dll than the one I made code for. When stepping through it will skip lines occasionally and randomly just stop debugging. Often it will start debugging then stop randomly and show any new breakpoints … | |
Plz help me in converting vb code to vb.net [CODE]Function Main() Dim sMsg as string sMsg = MoveFile(DTSGlobalVariables("LoadFileName").Value) if (sMsg) = "" then Main = DTSTaskExecResult_Success else Main = DTSTaskExecResult_Failure end if End Function Function MoveFile(ByVal fileName) on error resume next Dim objFSO as string Dim objFolderDestination as string Dim … | |
I am using a ListView control in my VB Form and I want to save all the data in my ListView control. It has 2 columns and the number of rows can keep increasing depending on the user. Please help me with this query. Thanks in advance. | |
![]() | Hi guys, I want to export the record according date range with visual basic. And the date range will be using 2 date time picker to choose. Can anyone give an idea how to do it? Thank you. ![]() |
i have ADO connection in MS Access, when i tries to execute con.execute command, MS-Access gives error like MS Access encounter serious problem and needs to be closed. any help or suggestion. thanks in advance | |
Dear, Currently i'm doing a project to design a chatting program using MFC( Microsoft Foundation Classes) and Visual Basic (VB). Just wondering, could you help me with this topic? Your attention kindly appreciated. Thank you. | |
Hi there! I'm an IT student, doing a final project of some sort for my college, a board game called "Game of the Generals" (something similar to Stratego). I've done some work in C# using Visual Studio 2005, but my experience told me C# is a rather poor language to … | |
if i run the program it goes hang here is the code [CODE]Set rs = New ADODB.Recordset With rs .Open "Select * from tblCandidates1", cn, 2, 3 Do While Not .EOF If !Position = Combo1.Text Then Combo1.AddItem !Name ElseIf !Position = Combo2.Text Then Combo2.AddItem !Name ElseIf !Position = Combo3.Text Then … | |
Dear all i need help.......!!!! i want to insert data using a datagrid how can i use it? ![]() | |
Hey Everyone, So I currently have a user interface that I created in visual studio that takes user input as arguments for a certain VBS script that I wrote, and then calls and executes that script via the Process.Start method. When the script is executed, it is executed as a … | |
hi to all geniuses i have created a webbrowser but how can i copy any text foem a website and how can i save the passwords can anyone heip me please help me in this project | |
So, I am running into an issue. I am wanting to display the contents of the open CMD window in my Rich Text Box. Any help? Thanks. |
The End.