20,278 Topics

Member Avatar for
Member Avatar for Shodow
Member Avatar for nileshahir

i want save image in directory path and also save path in database...sqlserver 2005 and retrive in in same folde and path

Member Avatar for talerKK
0
123
Member Avatar for Fangling

i have a database table containing: SEG,AMK,101427Y,EG3902,EG3902-G1 SEG,AMK,101427Y,EGS650,EGS650-G1 SEG,AMK,103852S,EG3901,EG3901-G1 SEG,AMK,103852S,EG3904,EG3904-G1 SEG,AMK,103852S,EGS104,EGS104-G1 SEG,AMK,103852S,EGS650,EGS650-G1 SEG,AMK,106581C,EG3901,EG3901-G1 SEG,AMK,106581C,EG3902,EG3902-G1 SEG,AMK,111713M,EG3901,EG3901-G1 SEG,AMK,111713M,EG3902,EG3902-G1 another table containing: 1 SEG-AMK EG1832 Mechanics and Materials 286 1.5 EG1832 2 SEG-AMK EG1833 Electrical Principles 375 1.5 EG1833 EG1952 EG1903 3 SEG-AMK EG1835.1 Engineering Mathematics (1) 456 1.5 EG1835 EG1001 4 SEG-AMK …

0
95
Member Avatar for ashking

I have a bit of vb.net code that will search for a string, then get a certain amount of characters after it and display in within a text box. My issue is that is some cases there are more than one string of text I need to display, so rather …

Member Avatar for ashking
0
153
Member Avatar for disposable_zero

DynDNS has recently changed their policy so that if you want to maintain your "free" account you have to login to their site at least once every 30 days. I'm trying to write a script that I can kick off on a scheduled task. I'm not very adept at coding. …

Member Avatar for disposable_zero
0
175
Member Avatar for gbhs

Hi to all I want use one reportviewer for several reports each with a parameter. This person has done it here http://www.sourcecodester.com/visual-basic-net/load-rdlc-report-using-report-viewer-programmatically.html without parameters. How can it be used with parameter for each report. when I change line 15 to da.Fill(ds.Employees,txtEmployeeID.text) (where txtEmployeeID holds employee ID as a SQL parameter), …

0
153
Member Avatar for yuvjeeth

Hi, How do you get the WebBrowser's Url in a Combobox? I've tried the Url member but it says "Value of type 'System.Windows.Forms.WebBrowser' cannot be converted to 'String'." I also tried the LocationURL member also but it was in VB6 and not VB.NET. Please help me. Thanks in advance

Member Avatar for yuvjeeth
0
173
Member Avatar for Jake.20

Greetings fellow developers, can you guys give me a hint on how to check if the datacolumn or datarow on the database has a value or null value what i want to happen is if the column1 has a value then the button is disabled. Dim Str As String Str …

Member Avatar for kRod
0
266
Member Avatar for LobeRoni

Hi, I am new to this place and found this by searching for a log in system tutorial for a Visual Basic 2008 Express Edition. So far I have been able to put a code to have 3 users on: [code=Visual Basic]Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, …

Member Avatar for sunilkumarasem
-1
2K
Member Avatar for markjames2012

im currently working on listview and i think i need help :) all i need to do is when i click the button it select the items and so on up to the last item and set back to beginning bu im my code its just up to the first …

Member Avatar for markjames2012
0
165
Member Avatar for intes2010

My code is working but my only problem is that the entire program freezes while it is looping and the freeze only stops when the loop is done, is there any way to get rid of this freezing? i want to see it display from 1 to 21 but instead …

Member Avatar for markjames2012
0
540
Member Avatar for ogrishmania

I'm trying to add [this](http://www.codeproject.com/Articles/15559/A-Windows-Forms-based-text-editor-with-HTML-output?msg=4610424#xx4610424xx) to my existing project. I'm right clicking the toolbox-> chose items-> select the exe. It automatically adds a reference to my existing project. But after I drop the control onto my form it gives me: "LiveSwitch.TextControl.Editor is not defined" 2 times and 1 "LiveSwitch is …

Member Avatar for ogrishmania
0
412
Member Avatar for lavanya uppala

Dear All, I am trying to display the buttons dynamically and buttons of text trough character bit map. It is possible or not. Please reply me urgently.

Member Avatar for tinstaafl
0
328
Member Avatar for toxicandy

Currently I am designing a inventory system, however jumping straight into vb.net was easier said than done. At the moment, all the information stored goes to two places, one being a master file that has all the information ever inputted, and the other being an individual file that is created …

Member Avatar for tinstaafl
0
270
Member Avatar for Eternal Newbie

Recently I've used zedgraph barchart to create a chart with 12 bars. I did want to put each bar on an x-axis scale and change the label name of that scale, but I did not success. Could you please show me the way the put my bars inside the scales?

Member Avatar for Eternal Newbie
0
279
Member Avatar for sw8revenge

i need some help... please help me convert this code into vb .net im using a device w/c is digital persona fingerprint scanner, the code works but it does not show any scanned image of the fingers in vb .net Private Sub cmdCancel_Click() op.Cancel lblMessages.Caption = "Operation canceled" Set op …

Member Avatar for arorastat3456
0
719
Member Avatar for manoj_582033

Friends, I Have Developed an Application, Now I Want That My Application Should Start Automattically When System Starts, How Can I Do This, Please Suggest Me

Member Avatar for Eternal Newbie
0
225
Member Avatar for oldSoftDev

Private networkAvailableEventHandler As NetworkAvailableEventHandler = AddressOf NetworkConnectionChanged Private Sub NetworkConnectionChanged(sender As Object, e As NetworkAvailableEventArgs) If Not disposed Then OnPropertyChanged("IsNetworkAvailable") End If End Sub Dim disposed As Boolean = False Public Overloads Sub Dispose() Implements IDisposable.Dispose Dispose(True) MyBase.Dispose() GC.SuppressFinalize(Me) End Sub Protected Overridable Overloads Sub Dispose(disposing As Boolean) If disposed …

Member Avatar for Eternal Newbie
0
1K
Member Avatar for major_lost

I have a form with A GroupBox on it. Within the GroupBox is a TextBox and a ComboBox. I am trying to disable one or the other when either text is entered into the textbox OR when an item has been selected in the combobox. I can get the combobox …

Member Avatar for major_lost
0
299
Member Avatar for patrick.weaver.161

Hello group; I have been searching for a way to run an external macro on an excel sheet automatically. I have found some code including this local suggestion http://www.daniweb.com/software-development/vbnet/threads/332821/run-excel-macros-with-vb.net# which looks good but I am baffled by the final instruction **"just remember that you have to have an excel sheet …

Member Avatar for patrick.weaver.161
0
263
Member Avatar for ogrishmania

So I must build an app that has to do with mail address management and more. Let's say the user has an excel file with 2 millions of rows (email addresses). I made it the oledb way and the first mistake I made was putting ~500k rows in a datagridview, …

Member Avatar for ogrishmania
0
435
Member Avatar for UKnod

I am able to find and replace in word, however all I want to know is if the word was found, I have tried the following code: This works oDoc.Content.Find.Execute(FindText:=x, ReplaceWith:=y, Replace:=Word.WdReplace.wdReplaceAll) This never give the true statement oDoc.Content.Find.Text = x If oDoc.Content.Find.Found = True Then But why not?

Member Avatar for UKnod
0
157
Member Avatar for yeeitsneo

hi. i made a simple chat app on vb 2005 express edition. Its juts a simple client server chat. could anyone help me turn it into a multi client chat. where more than 1 user could connect to the server. it must include a publich chat room where everyone connected …

Member Avatar for yeeitsneo
0
253
Member Avatar for gbhs

Hi I have a datagrid with 2 columns (Scores(Int) index 0 and Comment(varchar) index 1) Comment columnvalue depends on score columnvalue. This code works well in my cellvaluechanged event If e.ColumnIndex = 0 Then If Not IsDBNull(Me.dgvStudDisc.Rows(e.RowIndex).Cells(e.ColumnIndex).Value) Then If Me.dgvStudDisc.Rows(e.RowIndex).Cells(e.ColumnIndex).Value >= 0 And Me.dgvStudDisc.Rows(e.RowIndex).Cells(e.ColumnIndex).Value <= 5 Then Me.dgvStudDisc.Rows(e.RowIndex).Cells(1).Value = "Very …

Member Avatar for gbhs
0
2K
Member Avatar for Casperjames

I have searched the google machine to the ends of they internets and back again and tried everything from clean builds to removing registry entries. This has vexed me for the past week. It all started out as a simple application project windows form style. New project deserves new visual …

Member Avatar for Casperjames
0
2K
Member Avatar for Learner010

i want to retrieve data from Access table but i don't know where i am going wrong.here i am going to show my work which return errors:- Dim con As New ADODB.Connection Dim rs As New ADODB.Recordset Public Sub procedure1() con.Provider = "Microsoft.jet.oledb.4.0" con.Open(My.Application.Info.DirectoryPath & "\Database1.mdb") End Sub Private Sub …

Member Avatar for Reverend Jim
0
849
Member Avatar for IsaacMessi10

How can I close a user generated button? Here's the code for the button that creates new user generated buttons: Public Sub Button12_Click(sender As Object, e As EventArgs) Handles Button12.Click TC = TC + 1 Dim TCP As New Integer TCP = TC * 100 Dim NT As New MyButton …

Member Avatar for IsaacMessi10
0
160
Member Avatar for a1a4a

Greetings I am working on a mail client in visual basic, till now i can only send emails using smtp, but i am having troubles finding how to receive them. Could you help me with a working simple code on how to read/receive emails using visual basic using .Net framework …

Member Avatar for srilekha.m
0
1K
Member Avatar for Shodow
Member Avatar for mrkm1188

How do you change the "Apply to" portion of the permissions on a folder from "This folder, subfolders, and files" to "Files only" and to "This folder and subfolders" ?

0
130

The End.