16,916 Topics
![]() | |
I have made a program and published it using vb 2008... this program saves various values in a txt file.... but when i open the folder where the program is installed there is no txt file.... Sois it safe to store and retrieve passwords from a txt file?? Think it … | |
I am new with vb can anybody help me with port ios how to manage the ports | |
Dear Sir I am new in vb. I am facing a problem. I create table in Access. where(ID, Name, Salary) field is there. I Make front page with VB.6 now i want to input data name, salry. ID should be generated by machine increased one by one. How i will … | |
i am trying to write some vba code to copy 200 workbooks from 200 folders on a network. example i have a directory called F Within F i have staffstreamA within STAFFSTREAMA i have 200 folders named as forth A1,A2,A3 ETC TO A200 Within folders A1 is a folder called … | |
when i use security trimming. i cant figure out whats wrong. Please help me =) secure/web.config its in a map called secure with admin.apx [code] <?xml version="1.0" encoding="utf-8"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <location path="Secure/Admin" allowOverride="false"/> <system.web> <authorization> <allow roles="Administrators" /> <deny users="*" /> </authorization> </system.web> </configuration> [/code] Web.sitemap [code] <?xml version="1.0" encoding="utf-8"?> … | |
Season Greetings! Searching database file in the application path I want to determine the database file is existing or not... If the database (".mdb") is existing then msgbox "The database .mdb is not existing" if not existing msgbox " The database is not existing" If the database is not existing... … | |
I am doing this program that has listboxes and 2 combos Listbox 1: 1-3 Persons Listbox2: 4-7 Persons Combo1: 8-20 Combo2: 21-50 When I click on a number of persons the price is displayed... But I need a way to change the prices so they must not be in the … | |
Hi, My database in Access contains record since 2005 and it is not required for frequent use unless the Audit ask for. So I would like to take the backup of the data through VB6 by writing code instead of going to Access and copying in CD So will any … | |
I m using VB6 and MS Access. In MS Access table I have already set the decimal digit to 2 and it is showing only 2 digits after decimal in MS Access Table but when I put the data in MSH Flex grid then it shows around 12 to 14 … | |
[b]Code[/b]: [b]NumeroReal.h[/b] [code] #pragma once #include <iostream> #include <cmath> #include <cstdlib> using namespace std; class NumeroReal { private: double n; public: NumeroReal(); // default constructor NumeroReal( double n ); // parameter constructor NumeroReal( const NumeroReal &unNumeroReal ); // copy constructor ~NumeroReal(); // destructor void setNumeroReal( double n ); double getNumeroReal() … | |
Hi, I'm hoping that someone can help me out as I'm sort of new to programming. I recorded a macro that uses microsoft query to get data from an access database. It works fine as it is, but I want to change the final filter to a variable and I … | |
I need to get an image to move a number of twips at a timer interval determined by a variable (no problem) for a number of iterations through a for/next loop (problem). I've tried it without variables without success: first: Form_Load() Dim jumps as Integer jumps = 1 For jumps … | |
hi, i'm a novice user of VB. a freshman student of saint mary's university, can you please help me in my problem,, i'm having trouble in our VB 6.0 coz i dont have any knowledge regarding in this,, can you pls provide me a code which in cpu scheduling which … | |
Hey mates, i am willing to learn the Visual Basic.NET Programming Language. Which software should i use to begin practicing and which ebook do you advise me to use to begin learning ? And is there any background to star with this programming language or it is considered an easy … | |
Please suggest me a Control or Object (Other than MDI Form) In vb 6.0 which can hold a Form. I want to call another form from within a form in a control like TabStrip. Pl. suggest me at earliest. Thanking you; Pankaj Kumar | |
If someone could tell me if there is a function or method, or some way of finding the directory that the VB project loads to when it is installed on other computers that would be great. What I want it for is so that I can save and restore a … | |
Dear all, Is it ever possible to write a programme in C++ which enables me to: 1) Read the data in spreadsheet of MS-Excel 2) generate another Excel file as output ? Also, are there any standard library could do the job? One of my friend said using Visual Basic … | |
i had an error in the visual studio 2005 that for no reason, the menu bar is no longer there !!!! i cannt see the "File", "Edit", ....... menus even the help menu is not there so i contacted microsoft by e-mail, support, and telephone..... the didnt reply, they just … | |
hey, I am looking for a means to END my application in VB6 based upon my computers clock i know the function in VB.NET [CODE]If My.Computer.Clock.LocalTime.DayOfWeek = DayOfWeek.Wednesday Then End End If [/CODE] won't work in VB 6 tho. get a run time error "404 object required" any help at … | |
Hi, I want to know how can we connect to the Microsoft ODBC Drivers to the VB. | |
Hi guys. Im a student and i have a problem in finding the right procedure to solve my problem. Giving a set of numbers that will find their combination for a given value. For example 1st digit will be the size and the 2nd digit will be the qty.: Size … | |
I want to write a code for recording inventory item, all the functions work fine except the function for removing the data. I spend a lot of time in it but still cannot know what's wrong. Here is my code: [code=c++] #include <iostream> #include <fstream> #include <vector> #include <string> using … | |
function CheckError( msg) If mci.ErrorString = [COLOR=#800040]""[/COLOR] Then CheckError = False Exit function End If MsgBox msg + [COLOR=#800040]": "[/COLOR] + mci.ErrorString mci.SendString [COLOR=#800040]"close snd" [/COLOR]CheckError = True End function Sub Record mci.SendString [COLOR=#800040]"open new type waveaudio alias snd buffer 6 wait" [/COLOR]If CheckError( [COLOR=#800040]"Open"[/COLOR]) Then Exit Sub mci.SendString [COLOR=#800040]"set … | |
Hi All. Does anyone know how to get the ShareName of a Local Drive? Or even if the Local Drive is shared? I know you can get the ShareName using FileSystemObject, but this only works for Network Drives (Local Drives return ""). Any help would be greatly appreciated. Thanks, Chris. | |
Hello. I, the C++ noob is back again... This time requiring some help with some visual CPP. This is the first time im working with this, and its only @ a basic level. Yes, this is somehting im doing at university, but i dont ask for help unless im stuck … | |
Hi I'm using Visual basic.net 2005 I've got a little problem that i help with. I've created some arrays: Dim vehicleMake() As String = {"[Select]", "Ford", "Vauxhall"} Dim vauxhallModel() As String = {"[Select]","Astra", "Corsa"} Dim fordModel() As String = {"[Select]", "Feista", "Focus"} added two Combo boxes: `cmbVehicleMake & cmbVehicleModel` and … | |
I'm an AP level computer science student, and I learned VB last year before touching in basic C++ techniques. Now, I was wondering as I (kinda) learn Java (I'm crap at it) what the overall net worth of having VB skills are? I mean, Java seems to be THE language … | |
Hello, I have problem witch i've been working on for a couple of days now with no real progress. The problem is that i'm trying to search trough a array of pointer for a certain value. If the value exist return that value to be used in another function, but … | |
hi is it possible to play a wav file just with the availability of the wav data as a text file. I mean, i have text file that has wav data. how can i play the wav file using just the numbers(data) in the text file? thnx | |
sorry if this is really nooby but i cant seem to get pass the basics. i need to write a program that accepts a series of exam marks, ended by -1. When the -1 is entered, it should display the following results in a text box,: [INDENT]The average (mean) mark[/INDENT] … | |
Hello, i have been working on a VB Assignment which needs to be completed. However i have been experiencing some difficulties. I am not particularly experienced with VB, and so forgive me if these problems seem nooby.. Basically so far, i have a form where Data of a Customer and … | |
Im making this program. But im having trouble calling certain functions. Im having trouble calling ShellExecute, RemoveDirectory, CreateDirectory, FindFirstFile, & DeleteFile. I get the following errors when trying to compile... [CODE] c:\documents and settings\george\my documents\visual studio 2005\projects\mmpc v1.0\mmpc v1.0\prog.cpp(42) : error C2664: 'ShellExecuteW' : cannot convert parameter 2 from 'const … | |
Greetings! Im using this format to use and open database Set ac = New ADODB.Connection Set ar = New ADODB.Recordset strconek = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\record.mdb;Persist Security Info=False" i want to use variable value in my data source. my database is record.mdb. i want to make syntax for … | |
greetings! anybody know how to convert the month value into word format for example date = 12/2007 month is december how to convert this 12 into "december " is there any command to get the month value into string or word format...or i make may own... thanks in advance | |
Ok I have just downloaded the VB 2008 Express Edition and need a BIT of help on how to print a form and how to store the values of the check boxes on END and load them on LOAD of form!! Thank you.... I know this may not be the … | |
This is what I have written so far for my homework. No, I am not asking for someone to do my homework just to help me with what I have so far. This is a Restaurant menu created for a web site, I am very close to getting it finished, … | |
I am trying to create a phone book program in Visual Basic. I have so many phone numbers, I thought this would be a neat way to handle the overflow lol. I want it to read the information from a text file with the following data: First name, last name, … | |
i am writing a VB 6 program, but the kill command wont work Private Sub Command7_Click() Kill "C:\Documents and Settings\HP_Owner\Desktop\server\seats.exe" End Sub when the command button ic clicked the runtime error 53 "file not found" comes up? The file exists and the path way is correct, any ideas on what … | |
Hi I want to know how to use vb6 visual data manager to create a database with ms access. where actually can vb6 visual data manager be located.Please help. Thank you. | |
How to select a particular row in MS Hierarchical Flexgrid control during coding. I m not getting the desired property. | |
In vb6 form I've 1 Textbox, 2 option buttons & 1 command button my need is I want to move from one option button to other by pressing Tab key. Help me out. This is customer requirement. | |
I am a Lotus Notes developer trying to write code in VB. I have a number of scripts running to hide rows, and it flashes whenever the code is run. Is there a way to run this code in the background so that the user does not see the flashing? | |
I'm working on an MP3 player for Visual Studio:C++, and I've already realized this is wayyy more than I thought it'd be. I'm at a standstill right now with 2 things, any help would be greatly appreciated: 1) Playing back an MP3 file. I'm building this thing from scratch, and … | |
Hi, I have entered names of student under field NAME in Access, the names are like;- Mohan Chaturvedi, Deepa Agarwal, Mona Agarwal, Sohan Chaturvehi etc With the help of VB6 and Crystal report 8.5 I want to take the Report of those student within whose name the word Agarwal exist. … | |
Hi I have a program developed using VB5 with an Access 97 database. Just before it reached 1gig I compressed it. Now its over 1gig and keeps yelling that database has reached maximum capacity. May someone please help me on how to handle this. Thanks in advance. Guets | |
Ok my program is about car spare parts of a spcific car! Next to each part I have a check box that when it is ticked it indicates that the part needs replacement! Is there a way to print only the parts that need replacement? | |
hello. i'm searching for records of an specific item with it's unique item code but it seems that i don't see some of transactions after transferring it to a flexgrid. i'm using the movefirst movenext method so i could add it to the flexgrid. i'm using vb 6. thanks | |
Greetings! " Visual Basic 6 Program" I want to open the database file base on the given filename. If the database file is present all data that i want to save will be save in this database. Else, if the database is not present it will create new database to … | |
Hi my Name is Ryan and I am currently doing a college project in VB.net I have wrote a few programs in VB.net but for this current project I really need help... Is there anyway of ending processes (such as explorer) from a click of a button in a VB.Net … | |
would some one please help me with this?? i 've got an assigment from my professor which is in a University level (p.s i am still in college, and this class suppose to be the"introduction of programmng") However, in the game we suppose to create a "BlackOut Game", which we … |
The End.