20,278 Topics

Member Avatar for
Member Avatar for Hari om
Member Avatar for Erick_3

How do i retrieve an ID with an AUTONUMBER as DATATYPE and has alphanumeric format ex(ER001)? Can some genius programmer out there help? :P? im using Access for backend and VB 2010. My code so far only returning the last number of the ID Column ex(1 instead of ER001) Dim …

Member Avatar for Reverend Jim
0
227
Member Avatar for Kristiani

i have a textbox named AddU.text, i also have a msaccess table field named Quantity, what I want is that when i input a value in AddU.Text and click the add button, the value i entered will be automatically add to the existing value in Quantity. I keep searching for …

Member Avatar for jez9
0
1K
Member Avatar for Solution Hall

Hi ! I am working in a project using vb.net 2010 with SAP Crystal Reports. Regarding the Reports everything is fine but i had an unusual problem. Actually i have to make a report using sub report technique but when i call the main report that calls another sub report …

Member Avatar for Minimalist
0
1K
Member Avatar for waqasmrd

hello sir my problem is when i add new buttons or labels any thing on a page it cannot be displayed(and also do not execute new code) .... it display only those things which i put on the interface or page before...did not add new things...kindly help me its my …

Member Avatar for waqasmrd
0
138
Member Avatar for jamesrobb

I have a program (exe) that starts an external .exe program in response to a user request. If the external program is started by me on the desktop it checks for updates to the program prior to opening up. If I do it using the ProcessStartInfo then it doesn't check …

Member Avatar for jamesrobb
0
124
Member Avatar for jez9

Private Sub LVlist_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LVlist.SelectedIndexChanged If LVlist.SelectedItems.Count > 0 Then With LVlist.SelectedItems(0) VarIdentifier = .SubItems(0).Text lblname.Text = .SubItems(0).Text End With pix() End If end sub Sub pix() sql = "select pic from tbldishlist where nod = '" & lblname.Text & "'" Dim acscmd …

Member Avatar for jez9
0
333
Member Avatar for SaneleSHaBbA
Member Avatar for Vb.Netter

Hi insert command works update does not do anything any help Please SqlTimes.InsertCommand = "insert into athletedata([Athlete],[Mydate],[session],[mytime]) values ('" & athletename & "','" & storedate & "','" & todaysession1 & "','" & savetim1 & "') " SqlTimes.Insert() SqlTimes.UpdateCommand = "UPDATE Members SET [Agegrade]=('" & savetim1 & "'where [Fullname]='" & athletename …

Member Avatar for Santanu.Das
0
315
Member Avatar for DHARM_1

basically i m creating vb.net window application which can show the result in rdlc report... at the back end it is SQL server 2008. Is there any easy way to fill RDLC tablix based on row and column grouping. The situation is as follows. I have a table in SQL …

0
249
Member Avatar for OMER AHMED

Dear all i need help with listview . i have 5 columns and i have 4 menustrips. i want something like below If ListView1.SelectedItems(0).SubItems(0).Text = "Advance" Then t2.Enabled = False t3.Enabled = False t4.Enabled = False ElseIf ListView1.SelectedItems(0).SubItems(0).Text = "Access" Then t1.Enabled = False t3.Enabled = False t4.Enabled = False …

Member Avatar for Minimalist
0
267
Member Avatar for sganandhsg

Hi All, I am trying get FROM Email address while uploading email. I have FileUpload control to update the any of documents from drive to application. I need to get FROM Email address when uploading email using FileUpload. Please let me know if have any code like above Scenario

Member Avatar for Santanu.Das
0
96
Member Avatar for tucker046

I have a set of 2 ComboBoxes i would like to make Combobox 2 not populate from the directory if Combobox1 has a certain character in the file that is highlighted. If at all posible id like to find a way to have it continully search for the specific set …

Member Avatar for tinstaafl
0
158
Member Avatar for OMER AHMED

whenever i click form10 then this error come. Warning 1 Value cannot be null. Parameter name: objectType 0 0 Instances of this error (1) 1. Hide Call Stack at System.ComponentModel.TypeDescriptor.TypeDescriptionNode.GetRuntimeType(Type objectType) at System.ComponentModel.TypeDescriptionProvider.GetRuntimeType(Type reflectionType) at Microsoft.VisualStudio.Design.MultiTargetingContextProvider.GetRuntimeType(Type objectType) at Microsoft.VisualStudio.Design.Serialization.CodeDom.HandlesClauseManager.GetFieldType(String fieldName, Type documentBaseType) at Microsoft.VisualStudio.Design.Serialization.CodeDom.HandlesClauseManager.GetReferencedComponentType(String componentName, CodeTypeDeclaration codeTypeDecl, ITypeResolutionService loader, IDictionary& …

Member Avatar for Santanu.Das
0
288
Member Avatar for 12345reasbaby
Member Avatar for Reverend Jim
0
48
Member Avatar for GianiD

Hello I've posted a few days ago how to get my data in a SQL database and show it in a datagridview. I found out how to do this rather quickly however I've been asked if I can add a button to my form and be able to print my …

Member Avatar for Santanu.Das
0
141
Member Avatar for tucker046

Hi, I am Populating a combobox from a directory but im wanting to filter some file names from showing in a specific Combobox. Im a newb at this VB stuff and could use the help! Here's the code im using to pull the filenames from my C:\ drive but i …

Member Avatar for tucker046
0
440
Member Avatar for GianiD

Hello I have a project where I have 2 textboxes called "Name program" and "Error" where I have to write data in, Once I have wrote the data I have to import these 2 textboxes into an SQL database so it has to show like this in the database: Name …

Member Avatar for GianiD
0
265
Member Avatar for PM312

hi, i am trying to print report by ceating excel file and print. but getting below error when creating sheet2. osheet = obook.Worksheets("Sheet2") Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX) worksheet1 works fine. I have Excel 2013 installed on my system. what could be the problem. Thanks

Member Avatar for Minimalist
0
359
Member Avatar for Papa_Don

I'm writing a routine where the user can populate up to 8 textboxes with numbers. Since there is potential for these numbers to be unsorted, I want to sort these prior to saving. However it's probable that all of the textboxes will not be used. My challenge then is how …

Member Avatar for Minimalist
0
684
Member Avatar for jez9

Hi again, i'm trying to put a background image in my button[i declare the button] , My database[ms access] , tbldishlist - name[text , Primary key], pic [ole object] when the form is loading, the button's background is according to the name of the item. here's my example: Dim btn …

Member Avatar for Reverend Jim
0
692
Member Avatar for petercat

The reason the label "disappears" may be due to the use of an absolute label location X and Y values after the Picturebox is made the parent. Try this: PictureBox1.SendToBack() 'Make labels transparent and set locations With Label3 .Text = "A" '.Location = New Point(62, 39) .Location = New Point(.Location.X …

Member Avatar for Santanu.Das
0
477
Member Avatar for Mahmud_1

Hi Guys; I have a data grid imported from a CSV file. It has four columns name, price1, pice2, price3 I also have a drop down list which displays the first column of the datagid (name). If i select a name i want to be able to dispaly all prices …

Member Avatar for ddanbe
0
122
Member Avatar for kenea
Member Avatar for kenea

hi please help me with this. when I try to save it, it saved. but the problem, it is saving though it has the same record If idno.Text = "" Or proflname.Text = "" Or proffname.Text = "" Or _ profmi.Text = "" Or subcode.Text = "" Or teachuser.Text = …

Member Avatar for Mr.M
0
215
Member Avatar for jez9

help please, i really need to solve this one. when the quantity of the product is increasing/decreasing, i want the Total Price to update/increase/decrease also, but its only remain working. the button is declare, so when i click the button , all of the info of that will be transfer/view …

Member Avatar for jez9
0
106
Member Avatar for jez9

ms access [tblorder - code[text], items[text], total[text]] code = lblcode [label] items= x.SubItems(1) [in listview] total = lbltotal [label] as of now i can only save 1 item in the field 'items' , but i want to save 2 or more items,how can i do that? For Each x As …

Member Avatar for jez9
0
283
Member Avatar for Mr.M

Hi DW I have create a client using VB.NET using Winsock 5.0 as a socket to communicate with the server which I did it in java. The problem is that for terminating the client first send a termination request to the server and the server grants the permit and the …

Member Avatar for Mr.M
0
215
Member Avatar for littlerockit

Hi I'm new to this site so please forgive me if this is the wrong forum. I am developing a program which takes data from a reader (impinj) and displays results on a form. The Datatable is filled on a separate thread to the main form, and as such I …

Member Avatar for littlerockit
0
502
Member Avatar for jessica_10

i want to hide the other button when i click the btnSnacks/btndrinks buttons: btndrinks, btnSnacks table: tbldrinks, tblSnacks [I use MS access] heres the code that i tried: ~[i use the same code in btnSnacks, i just replace the database with tblSnacks] Private Sub btndrinks_Click(sender As System.Object, e As System.EventArgs) …

Member Avatar for JZZZ
0
228

The End.