16,916 Topics
![]() | |
Hi, I have two functions. The first function fills the first three fields of the first row of an MS_Access table. I want to fill the remaining fields of the same(1st) row in the second function. Presently the second function fills the remaining fields of the next(2nd) row while the … | |
Hi ! I m a new guy in software development. Recently i m assigned wit a job where i got to modify a C++ project built in Visual studio 6 to work in visual studio 2008! any one got any advise where should i start frm? | |
I was hoping you guys could help me out as you have in the past. I am kind of new to C# coming from C++. I get two of each of these errors. C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(51,39): error CS1518: Expected class, delegate, enum, interface, or struct C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(57,9): … | |
any one has read a book named visual basic for dummies 2005 | |
Hi, I have 3 option buttons in a frame. I also have a button called RESET. I would like code so that if I select one of the option buttons, and then click on RESET, it removes the highlighted option, so that all 3 options are once again "unselected"? Please … | |
hi guyzz ... i wanted to make a system to compute na percentage of the item sold in every days period... here is the problem. ^_^ i have (10) item sell product but within (30 days).. i want to get the (20%) of that item... within the parenthesis is my … | |
Found here from google and hope any senior can help me :p I'm totally new to VB6. I'm doing program which need to transmit and receive text message using bluetooth. The problem now is i'm not really understand what should i do with the SEND button and MScomm function... Is … | |
Hi everyone, Designed a program using Front end VB6, Backend Access and I want to share it in Windows network for a few users. Please mention the procedure and syntax, this is my first program for network users. positively without mapping the shared folder to the users. Thankyou. | |
Hi, I'm new to Python and am hoping to find help with coding a Python script, applet. I code in an old version of Visual Basic 4.0, I have a simple app that is about 3 and a half pages of code long it does some relatively simple math additions … | |
Hello Friends, i'm looking for a vba code to use in excel in order to protect the spread sheet wrokbook from by others using the computer serial number & user name by reading the ASCII of both of computer serial number & user name and calculate the password through equations.Thanks | |
I need to do reporting in VB6. Can I use Crystal Reports ? My program doesn't get its data from a database. I need to pass simple variables to the report rather than link it to a database. Please enlighten me. Thanks and regards Preethi | |
i am trying to display a DB infos into a textbox. This my code sqlstr ="SELECT Description, Price FROM T_barcode WHERE Barcode ='" & Text1.Text & "'" con.Execute sqlstr Text2.Text = rec.Fields("Description") Text3.Text = rec.Fields("price") and iam recieving this "Item cannot be found in a collection corresponding to the requested … | |
I am newbie and trying to make a data display application in VB6 with 3 forms - Form1 is background Flash animation & graphics (Interface) - Form2 is for data-1 display - Form3 is for data-2 display Form2 & Form3 will display as slides on Form1 Data is in text … | |
Good day, I was wondering if anybody could shed some light on this task... I have already created 3 cab files from different "makers"; one from CabMaker, another from the MSCabinet SDK, and the other from MS Visual Studio 2008. Inside the cab is an OCX (this is used for … | |
PLease help me with this? [B]SCENARIO:[/B] I have developed an application with [LIST] [*]>2 custom dlls , [*]>a .mdb file, and [*]>my exe file. [/LIST] Using C# and VIsual Studio 2005. The application requires .NET Framework 2.0 to run. The application runs fine when all files are kept in the … | |
I am newbe trying to make a data display application in VB6 with Flash Animation (Interface). My question is: When I run the application, it should opens in normal window with title bar (not maximized). But when user press a button or some thing like that, window should resize (maximize) … | |
![]() | Hey there, I am trying to make a unique ID for each of my records. So in my "First Name" and "Last Name" fields, I am trying to ADD ALL of the characters' ASCII code in both fields. AN e.g First Name : JOHN (string) Last Name : DOE(string) Member … |
Hi everyone, I was wondering if anyone could help me solve the popular 8 puzzle problem in C# using the A* algorithm or using the manhattans distance heuristics. actually i know the theoretical aspect of it but programming it is a little bit more difficult for me though i have … | |
Consider the following code: Result= input_number Mod 7 If (Result > 0) Then Cells(1,1).Value = 3 Else NextResult = input_number Mod 5 If (NextResult > 0) Then Cells(1,1).Value = 2 Else Cells(1,1).Value = 1 End If End If What will be the content of cell A1 if input_number equals 56? … | |
Hi, i m currently working in autoCAD Can anyone provide me syntax for multidimensional array in VB6.0 for VBA whn i declare by following syntax it gives me error [CODE]dim arra(,) as Long[/CODE] Any help would be appreciated I want to declare a multidemsional array row is of long data … | |
Hi, I am using a dialog box where user selects a XML file from the local drive. The selected file along with the folder path is displayed in a textbox on the form. The user can now edit the textbox. On click on 'Proceed' button, I am parsing that xml … | |
Hi, i am having a vb6 program on a local lan server in my company. Recently i did an enhancement to the vb6 program. The program is able write into a blank excel sheet located in the application path. It work fine previously without any problem. After the enhancement, the … | |
Hi all, I wasnt sure wether to put this in the web design forums or here because it contains a bit of both - im not sure if the concept is even possible but its very interesting, possibly difficult and longwinded but potentially very rewarding [B]First a bit of background … | |
Consider the following VBA statement that calls a user-written function procedure Conevol with two arguments: Volume = 0.333* Module1.Conevol(radius, height) Based on the above VBA statement, identify the assertions below that are false: a. The above VBA statement resides in Module1 b. Conevol is a public procedure c. Conevol returns … | |
I'm trying to create a do while loop where I can automatically fill cells A1:D1 with the numbers 4 to 1 respectively. can anyone help?? | |
I've created a client/ server program and I'm not happy with some logic for the server. What I'm doing is Pulling it from the data base adding it to an array ' to help check for error Using the array to save to text file ' for preparation for sending … | |
How would I modify this do while loop to generate the values 4 to 1 instead of 1 to 4 I can't figure it out?!?!? thanks | |
Hello, Today I put together some code for a VB macro, but, having tried different methods I can't get it to loop. The closest I could come was getting my 1st copy paste to do so infinitely. I'm trying to get it to copy the department name in front of … | |
Ok. here it is. can anyone help?? [R5] Consider the following code segment: Dim I, Isum As Integer Isum = 0 For I = 8 To 1 Step -3 Isum = Isum + I*I Next I What will the value of the variable I at the termination of the loop? … | |
so i got this weird spyware never had any problems with others they went away easy but this one keeps comin back haha. some errors i get are > system restore disabled(re enabled but no restore points Desktop propertie tabs missing (RESTORED BY EDITING REGISTRY) Screensaver having a password on … | |
i want this result : [CODE]* * * * * * * * * * * * * * *[/CODE] but i get this result with this code : [CODE]* * * * * * * * * * * * * * *[/CODE] [CODE]Private Sub Command1_Click() a = 5 … | |
i need help here. how do i display checkbox value from my database MS access in a visual basic 6 form? i hv 2 checkbox in my form, which are Available and Not Available. if the value is yes, i want to display it in Available checkbox and if no, … | |
![]() | So here I am, with a new problem lol, I have a form, and it saves its information in a random file. Now, is there any way to save the values of the check boxes in the file, and so as i can retrieve them later? [ICODE]Private Sub cmdSave_Click() With … |
Hi. I am using Visual Studio 2008, and Sql Server 2000, and I have the following code: [CODE] 'Load connection module connection() cmd = con.CreateCommand cmd.CommandText = "SELECT * FROM tblUser WHERE username = 'xxx' " da.SelectCommand = cmd da.Fill(ds, "tblUser") dt = ds.Tables("tblUser") MsgBox(dt.Rows.Count) [/CODE] I don't know why … | |
Hai, I am a VB programmer and i had developed an ERP software using VB and MSSQL as Backend.On that software i am facing some problems with its speed and data storage capacity.So iam [B][COLOR="Red"]seeking a best language and databse for developing strong high speed software that can use in … | |
If you can help by giving guide to write this using VB, I shall be very glad: I want to get the quotient and a remainder when one number is divided by another one number, Can you please give/show me the Coding to this problem? | |
i want to auto generate an ID like 1, 2, 3. and anytime i close my application and open it again it should start from the Id it stopped. if i enter up to 6 the next one should be 7. Can anybody help me? | |
Hi. I have previously designed an ASP.NET system that interacted with SQL Server 2005. I now want to design a desktop application using Visual Studio 2008 that interacts with an SQL database. I had planned to use the same sort of coding to implement this new system. For example - … | |
Ok, first of all this is the first time I've used the forums on this site cos only recently joined. I've been studying computing at college for about 5 years and graduated from Sunderland Uni in 2006. Throughout the time I was at college the programming languages we were studying … | |
[B][/B] I am trying to display/open MS Access report and I get: [B]RunTime error 2486 - You can't not carry out this action at the present time[/B] on this line of code:[code] DoCmd.OpenReport stDocName, acViewNormal[/code] Below is my module: [Code] Set rsUnclaimedRptqry = dbUnclaimed.OpenRecordset("SELECT DISTINCT tblUnclaimed.L1L2, tblUnclaimed.PassNumber, tblUnclaimed.EmployeeName, tblUnclaimed.Status " … | |
Hi I need to know whether we can link objects in an autocad drawings with vb Also if it can be done, how? thanks in advance | |
Hi I'm new to Visual Basic and writting code for excel. My first attempt at writting a piece of code is to format a range of cells to display a particular date and time format. dd/mm/yy hh:mm. My problem is that I have written the code that uses a drop … | |
VB6.0 The following is how I open the Excel file, what I need to know is how to see if it is already open, and also a new Sub to close the file. [code]Private Sub Command1_Click() 'Place statement here to see if already open, if so then Goto 1 Dim … | |
VB6.0: Writing an argument to see if an Excel file is already opened before opening the Excel file, because if the file is already opened the Excel file opens as read only. If it's already open I want to skip to the next "goto" label (ie: "File Already Opened"). Thanks, … | |
I am looking to print some text files locataed in my local drive, i tried everything i know to do that but no luck so far Hope i can get a hand from here Thanks | |
Hi Friends, I need a snippet to convert any file into pdf format using VB6. Pls hep me out. Thanks in advance. Satya. G | |
Can somebody show me how to delete .dbf record/s in VB? i have this code [ICODE]conn.execute "Delete from records"[/ICODE] but its just marking the records for deletion, it wont delete the actual records until i issue the PACK command from foxpro. Please Help.. THanks | |
As I learn class modules, one issue that seems to come up repeatedly involves class modules inside class modules - how the "child" class module can never see anything inside the "parent". Say, for example, I'm writing a program involving a card game, and so I have a class module … | |
Hi, Frends Now I m Telling You How to insert Image Dynemically in Crystal Report 8.5 for the use in VB 6:-/ I Create an Job placement Software Crystal Report Which has some Fields and Photo of Candidate so First I Create an Crystal Report in 8.5 then Save it … | |
Hi there! Im wondering if there is a tutorial/source for a VB6 and lingo encryption. They msut both work the same way. As in: VB6: [code] sendToLingo(encrypt("my string")) [/code] Lingo: [code] decrypt(receiveString) [/code] So basicly, VB6 and lingo can both encrypt/decrypt the same string that is sent or received. Thanks, … |
The End.