11,870 Topics

Member Avatar for
Member Avatar for jemz

hello can you help me please where can i get the crystal report and how can i use this...thank you in advance hoping for your positive responds.

Member Avatar for AndreRet
0
95
Member Avatar for abelingaw

Ok, im having a long time creating reports for my program. I would like to ask if it is possible to connect my program to an existing msword file. E.g: If i click a button on my form, lets say cmdLeaveReport, an msword file named leavereport.doc will open (of course …

Member Avatar for AndreRet
0
248
Member Avatar for exception

can someone help me how to get the value of the cell of the sharp grid?? like in msflexgrid str = grd.textmatrix(row,col) tnx

Member Avatar for AndreRet
0
158
Member Avatar for dimasalang

hey, i'm new here..need help is it possible to save your work from other applications (e.g. word, excel, photoshop etc.) using vb6?? thanks.. this is for our thesis.. ASAP

Member Avatar for AndreRet
0
524
Member Avatar for shabadoo

I have a project that when opened automatically shows a userform for LOGIN/PASSWORD. Everything works great except that if the user clicks the Close(x) button included in the title bar of the userform, the userform is exited but the workbook is still open to its first page. Is there any …

Member Avatar for abelingaw
0
112
Member Avatar for neosonic

Hi All, I am using a msflexgrid to display my access database (not editing it in run time). But, I have one column which is a boolean. When I display it, that boolean column doesn't show as "True/ False" or "Yes/ No". It is shown as " -1 / 0 …

Member Avatar for AndreRet
0
100
Member Avatar for BasicGamer

Hello. I'm relatively new to Visual Basic 6, but I've been getting around pretty good. But there's one thing I need help with. You know how when your texting someone on your phone and you have to press the same button multiple times to get the letter(s) you want? Well …

Member Avatar for AndreRet
0
256
Member Avatar for jemz

hello can you help me please, how can i remove lots of spaces in a string for example: The space space space space quick space space space brown fox. the output should like this. Thequickbrownfox can you help on this...thank you in advance and I'm hoping for your positive response...

Member Avatar for AndreRet
0
130
Member Avatar for problematic:)
Member Avatar for AndreRet
0
5K
Member Avatar for problematic:)

hi, ahm. well can someone help me in my project, it is a reservation system in a church, the problem is, I have to reserve the date that my client wants. I don't know what application I should use. At first, I use the calendar contol 6.0 but I don't …

Member Avatar for AndreRet
0
380
Member Avatar for abelingaw

Ok here's what i want to do. I woul like to disable the toolbar and menubar in my main form depending on the usertype that was logged in. My dbase field is UserType and record type can only be User and Admin (Depends on the registration). When a user log …

Member Avatar for AndreRet
0
523
Member Avatar for shena

Hi guys, I have a very simple form with 2 textboxes only and a listview to display added record. Upon form load i wanted to sest focus to textbox1, but it shows this error: Run-time error 5:Invalid Procedure call or argument My form load code [CODE]Private Sub Form_Load() bModelMaster = …

Member Avatar for AndreRet
0
3K
Member Avatar for Jarrhed

I'm having a whole lot of difficulty attempting to add data to a multi-column ListView Here's the code for the ListView [CODE]ListView Height="263" Margin="12,29,12,0" Name="Tasks_ListView" VerticalAlignment="Top" ItemsSource="{Binding Source=}"> <ListView.View> <GridView> <GridViewColumn Width="91" DisplayMemberBinding="{Binding CourseName}" Header="Class Name" /> <GridViewColumn Width="275" Header="Assignment Name" DisplayMemberBinding="{Binding AssignmentName}"/> <GridViewColumn Width="110" Header="Due Date" DisplayMemberBinding="{Binding Path=Due_Date}"/> <GridViewColumn …

Member Avatar for Mitja Bonca
0
5K
Member Avatar for lttleastig

I want to send some packets they are in hex format 01 00 00 00 AA 00 00 00 01 because how winsock works i first need to convert it to ascii right? how could i do that every time i try it looses the NULLS - 00 help would …

Member Avatar for lttleastig
0
4K
Member Avatar for abelingaw

Uhm ok. I am near n finishing my project (Payroll System) But im having problems regarding some codes and i am only able to fix some of it My real problem is the saving of picture in the database. Have the code, works well but doesn't save the pic as …

Member Avatar for AndreRet
0
119
Member Avatar for Halbo

I'm well versed in creating a setup file in VB .NET, but am working in the older VB 6.0 on an older project I've been asked to maintain. How can I create a setup file in Visual Studio 6.0? Thanks in advance! Halbo (More than a name; it's ... Dim …

Member Avatar for AndreRet
-1
371
Member Avatar for divakar.it

I am developing a application using VB 6.0. My requirement is if the user log off the application using File->Exit the below action should perform Action1 : The login status should get updated with 0 in the back end table called "Create_Login" so that next time if the user login …

Member Avatar for AndreRet
0
135
Member Avatar for bob3

I'm just trying to make a cash till and something is wrong because when i try to execute it it just freezes. I think something is wrong with my loop, also i don't know how to refresh my sale total when i click clear order. It clears it but when …

Member Avatar for AndreRet
0
160
Member Avatar for bob3

Hi, Im doing a project in my class where i have to make code. i have to make a spread sheet that will control the sales that are taking place. The cash till has to add up the total cost of the items being bought, take in the input of …

Member Avatar for AndreRet
0
89
Member Avatar for aseem_nick

hi to all! i am a newbie in visual basic programming and have been currently assigned a project for developing a small HUMAN MACHINE INTERFACE. can anybody help me out how to start and how to proceed. i'll be very grateful to all who answered. Thanks

Member Avatar for kamranraj
0
101
Member Avatar for Naveed_786
Member Avatar for MichellePV

Hello, I am working on a combo box, Visual Basic 6.5 on Microsoft Word 2003. When I put in the text for the combo box, it loads fine. I save, close the document. When I re-open the file, everything in the drop box is gone. What am I doing wrong?

Member Avatar for AndreRet
0
109
Member Avatar for shredder2794

Hello all, When you first open a professionally made application a dialog box appears with an "install wizard" that lets the user install the program to a specific destination on the hard drive and among other thing change some settings. How do you make one of these using visual basic …

Member Avatar for Netcode
0
176
Member Avatar for shredder2794

Hello all, In lots of applications there are copy,cut,and paste buttons where the user can highlight some text and click "Copy" or "Cut" or "Paste" and then the program would do the corresponding actions. I was just wondering how to code such a button in Visual Basic 2010? Thanks in …

Member Avatar for Netcode
0
2K
Member Avatar for TSims11

So I need to be able to close a window when I open another window... Here is my code: [CODE]private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { Form2 ^form2 = gcnew Form2(); form2->Show(); Form1->Close(); }[/CODE] All this does is close both windows... If you guys could help out a noob to …

Member Avatar for TSims11
0
277
Member Avatar for shredder2794

Hello all, I am trying to make a program in visual basic 2010 where the user enters hours minutes and seconds into text boxes and then the program will count down from that until its equal to 0 when a msgbox appears and says its finished. I was converting hour …

Member Avatar for codeorder
0
551
Member Avatar for stelman

Hi there, I want to use a PictureBox in my project. The PictureBox does not appear in the default toolbox settings, so I tried to add it myself. I opened tools->choose toolbox items->.NET Framework Components and I chose the PictureBox along with other controls that are selected by default, but …

0
90
Member Avatar for hoong

The runtime error -2147217396 (8004100c) keep occurs once i attempt to run this code to get the received signal strength of my WLAN card from WMI by using VB6 in Windows Vista. So is there any solution to solve this automation error ? Is VB6 cant access to certain WMI …

Member Avatar for hoong
0
1K
Member Avatar for neosonic

I put one smaller picture box inside the bigger picturebox. The annoying thing is, I cannot have a good picture, because the my smaller picture is in rectangle shape, while the smaller picture box is in square. So there is a residual space in the smaller picture box that I …

Member Avatar for AndreRet
0
285
Member Avatar for tunde011

Hello all, I am hoping you point me in the right path here. How do I open a workbook when a value in the listbox is clicked? Thankyou

Member Avatar for AndreRet
0
209
Member Avatar for gee_azizi

Hi, in my VB6 app, there are ADMIN and USER type that can log in. Is it possible that ADMIN can monitor USER activities like when they delete the data, who had log in into the app and else? Thank you

Member Avatar for AndreRet
0
256
Member Avatar for nagatron

I would like to know to remove spaces from start and end of a string without removing the middle space. Ex. _ _String _ Sample _ _ = String sample I have a code: [CODE]Text1.text = Replace(Text1, " ", "")[/CODE] The code removes all the space in a text. Ex. …

Member Avatar for AndreRet
0
169
Member Avatar for Naveed_786

I am using this method to take print of data peresent in textboxes but it prints on top left corner i want to take print in a sequence and distance as it apears on form also want to increase font size waht should i do please help me. [CODE]Printer.Print txtstudentid.Text …

Member Avatar for AndreRet
0
283
Member Avatar for SkyVValker

I am using the code below to update the fields in a table.bt it update only first recorde ..where m i doin wrong plzz. help me..! [CODE] StChk.Open "SELECT * From SPINF WHERE STATUS='Active'", Con, adOpenDynamic, adLockOptimistic FeeTrans.Open "select * from TBLFEE ORDER BY VOUCHERNO", Con, adOpenDynamic, adLockOptimistic Do While …

Member Avatar for AndreRet
0
90
Member Avatar for blazeenterprise

Hello, Im creating a application in Microsoft access. I need to protect it with a license manager. I have built one but works from the computer. Whats i realy need is that i puplish my license database on the internet and in the application when you press active software it …

Member Avatar for AndreRet
0
115
Member Avatar for bnelle01

I am in the early stages of working with programing. Everyone I talk to around here who is in programing knows how to do the hard stuff but everyone of them said they did not have to start off using basic. I am trying to make that numbers game. I …

Member Avatar for AndreRet
0
147
Member Avatar for beginninphp

Hello all, I've been stumbling (more like Stumbling, I hope) across the web looking for something that can do occasional screen captures using a cron job on my casual gaming site server. I was hoping to be able to save screen captures of a few characters as I leveled them …

0
193
Member Avatar for kinv001
Member Avatar for AndreRet
0
414
Member Avatar for ash07

Hello aLL I need a small help from you guys.. I am creating project in VB6.0 and access 2003, form has combobox,tab control,textbox msflexgrid .. I am trying to retrive data from database.I have a sub procedure which is nicely working for all controls except combobox. while debugging I found …

Member Avatar for AndreRet
0
211
Member Avatar for saranyashanthi

hai can any one help me to write the codings for hospital management in visual basic on basic forms of bloode donation list,admission form,etc

Member Avatar for PoisonedHeart
0
84
Member Avatar for TheDocterd

Hi there recently I received help on how to ensure that a user don't close a form before he/she completes all outstanding entries on a calendar. That works perfectly, but now the problem is I have to complete all entries up to say the year 2020. I only want the …

Member Avatar for AndreRet
0
109
Member Avatar for damson

Can anybody help me in on how to connect my VB interface to a database. I have already designed the interface but I do not know how to connect it to Dbase. Damson

Member Avatar for AndreRet
-2
2K
Member Avatar for Mubusher

sir i am having a Visual Studio 2008 but it not install with crystal report when i open add new item-> its didnot contain Crystal Report how can i add crystal report and make crystal reports in visual studio 2008 how i install crystal report with visual studio 2008 only …

Member Avatar for Luc001
0
581
Member Avatar for fritzgarcia_29

I have dtpker1 and dtpker2 to choose from the date and I want to display in Listview. the problem with this code is that it cannot display dates from the listview. Please help me with the right syntax plzzzzzzzz.........:) Thank you so much!![code]Option Explicit Dim rs As New Recordset Dim …

Member Avatar for AndreRet
0
2K
Member Avatar for weasel7711

Hello, I am new to Access and VB, but I have used C# and C++. I am trying to update a whole bunch of records in a table, only one field. For example [CODE] [Employees] [ EmpCode ] [ FirstN ] [ LastN ] [ 019871 ] [ John ] …

Member Avatar for AndreRet
0
252
Member Avatar for arvin2006

Hi everyone. I am developing a vb app which uses reg free com. How can I get the IDs of the DLL file to insert it into the manifest file I am creating also with vb. Is this possible?

Member Avatar for AndreRet
0
2K
Member Avatar for Naveed_786

Can any one tell me how can i make privileges for user to restrict them and only administrator have all rights. Please help me Thanks in advance.

Member Avatar for AndreRet
0
124
Member Avatar for gagan83

hi can u help me in converting this PDL into flow chart : [CODE]sum = 0 If Condition1 or not Condition2 then for i = n1 to n2 If not Condition3 and Condition4 then for j = n1 to n2 Body1 Else for j = n1 to n2 Body2 return …

Member Avatar for AndreRet
0
74
Member Avatar for kamaamin

I am new in VB 6. I am have created text boxes and trying to add new data to the MS access. Whenever i add new data it replace the already exixting data in my table. I want new data to be entered without disturbing any existing data in my …

Member Avatar for peter_budo
0
128
Member Avatar for shabadoo

I am using a collection of Workbooks that are supposed to work in sync. When the main "System" Workbook is opened it initializes showing a sequence of userforms which get information from the user to determine how to proceed. One of the options is to "check inventory", when chosen it …

Member Avatar for AndreRet
0
84

The End.