20,278 Topics

Member Avatar for
Member Avatar for Nana.vb

[COLOR=gray]Hi,[/COLOR] [COLOR=gray]I work with Microsoft Visual Studio 2005.[/COLOR] [COLOR=gray]I'm about to build a simple paint editor similar to MS Paint program.[/COLOR] [COLOR=gray]of course, it has Edit menu, with Undo, Redo, Cut, Copy, Paste, Delete... etc.[/COLOR] [COLOR=gray]I have a problem with Undo and Redo![/COLOR] [COLOR=gray]How to do them with drawing?[/COLOR] [COLOR=gray]have …

Member Avatar for dyahalifda
0
717
Member Avatar for CrankyMero

Hello Everyone For a project from skool, I been in charge of development, and we already have the system, but they wanted to add images to the project, and since i been using the TableAdapter.Insert commando to add records to the database, I need to know how to send an …

Member Avatar for ZidaneXero
0
402
Member Avatar for alfredo11

Hi guys! I need help in putting Google Sketch up .3ds file to Microsoft Visual Basic 2008. How can I put .3ds file to VB 2008? I have searched in google but it only says VB C# and I got nothing. Please someone can share me a link for a …

Member Avatar for bluehangook629
0
50
Member Avatar for Netcode

Hello everyone! I want to write my connection strings and functions in a class and always call the class when i need to make a connection to my database to avoid code repetition and increase code reuse but i have an error. Here is my code below [ICODE]Public Class ConnectionString …

Member Avatar for Netcode
-1
86
Member Avatar for dwinn

Hello everyone, I am developing a form in VB.Net and ASP.Net that enables a user to grab data from a SQL Server 2005 Express database and display the data on the screen depending on the search criteria that they provide. What would be the best way to go about doing …

Member Avatar for dwinn
0
217
Member Avatar for Joshua Kidd

Hello, I'd Like to do the Same thing as in this post I posted a while back. But in a Listview Control [url]http://www.daniweb.com/software-development/vbnet/threads/369754[/url] But there is no Selected rows... There is an Item Active But that did not work. And I cant find this anywhere else. Can someone help? Thanks, …

Member Avatar for Unhnd_Exception
0
88
Member Avatar for rEhSi_123

Hello guys! I am a bit confused :?: The following line of code: [code]WebBrowser1.Document.Body.OuterHTML[/code] Does it extract only the body part of the HTML source? [B]As this is what I want :)[/B] And..... [code]WebBrowser1.Document.ActiveElement.OuterHtml[/code] Does it extract the whole part of the HTML source? I have tested the above but …

0
58
Member Avatar for Istw

Hello boys.. I'm here for an advice.. I have table 'users' with : ID , USER.. And 'activities' with : USER_ID , activity.. I want to select the USER_ID from 'activities' to find the user ID in the 'users' table.. I am using the VB database.. On php i know …

Member Avatar for adam_k
0
141
Member Avatar for mogaka

hi you all, I am creating an application which requres generation of random keys cosisting of 4 numbers(0-9). However, i realized that at some point,the random numbers repeats themselves. how can i avoid this repetition.the numbers form the primary key of a column in sql database table.

Member Avatar for adam_k
0
73
Member Avatar for Fa3hed

Hello Everybody prop lame i am making a access sql helper and for writing the insert this code [CODE] Dim i As Integer TextBox6.Text &= "Insert Into " & ComboBox2.Text & " (" For i = 0 To ListBox1.Items.Count - 1 TextBox6.Text &= ListBox1.Items.Item(i).ToString() & "," Next TextBox6.Text &= ")"[/CODE] …

Member Avatar for adam_k
0
135
Member Avatar for Fransh

Guys Help Please I have a textbox that needs to add up values from 3 other textboxes. I dont want to use the afterchange method on the other 3 textboxes. Is there a way i can assign or run a method that does the calculation throughout runtime. Like what excel …

Member Avatar for adam_k
0
137
Member Avatar for kosay

Hi thank you for greate forum can anyone tell give me linke for exe blocker in vb.net can I coded EXE blocker in VB . net or I must use C++ ???? thenk you

0
60
Member Avatar for anuj6928

i m using combo box in vb.net 2008 bt i m using the property as i can type in combobox this is done ... bt on running it ..when i m entering the wrong word in combo it will save the data .or sometimes gives error nd i want that …

Member Avatar for anuj6928
0
150
Member Avatar for Weliaz

Hey there DaniWeb! I have a bit of a problem! I am in need of a way to get the size of a remote file, without download the file itself (so that i can show download status in a status bar) is this even possible? Thank you a lot, Weliaz …

Member Avatar for Weliaz
0
949
Member Avatar for kingofnothing

hi i love daniweb because i feel free here and i know there are many people will help me i surfed from low knowledge in hardware field or in another words inputs devices i need some advice about how to made simple input devices i thinking to bullied board contained …

Member Avatar for debasisdas
0
129
Member Avatar for shers

Hi, How do I run a form that has a progress bar on a separate thread from another form? Thanks

Member Avatar for kvprajapati
0
317
Member Avatar for sujimon

Hi, I would like to know the correct procedure to deploy windows application in VS-2005. There are some specific issues I am facing after deploying the project to the client machine. - I have a CMS (ContextMenuStrip) in one of my forms associated with a TreeView and its not showing. …

Member Avatar for sujimon
0
118
Member Avatar for bklynman01

I have a training program that is used by MANY different people. I have encountered many formatting issues already (like not allowing initials) but now I have a new one that I'm not sure about. When the code tests the name in the TextBox.Leave function, I can find if there …

Member Avatar for bklynman01
0
156
Member Avatar for doomhades666

How can I add a timer in the listview that minuses 1 second at a time when the button starts click and stops when the stop button is clicked? Then save the remaining time in the database. Please help me in my school project. Thanks in advance. I prof. says …

Member Avatar for doomhades666
0
919
Member Avatar for xtianenikkian

Hello guys, i need a help regarding retrieving data in array here is the problem we are asked to get id number, name and section and put it in a array and then if we clicked retrieve button it will prompt an inputbox requesting for the id number of students …

Member Avatar for debasisdas
0
76
Member Avatar for john_steve_85

hi, my website was working fine, then I have added this code in my master page: [CODE] Dim css As New HtmlLink css.Href = ResolveClientUrl("~/JS/jquery_ui_1.8.1.4/jquery-ui-1.8.14.custom.css") css.Attributes("rel") = "stylesheet" css.Attributes("type") = "text/css" css.Attributes("media") = "all" Page.Header.Controls.Add(css) Dim jquery_ui_core_min As New HtmlGenericControl("script") jquery_ui_core_min.Attributes.Add("type", "text/javascript") jquery_ui_core_min.Attributes.Add("src", ResolveClientUrl("~/JS/jquery_ui_1.8.1.4/jquery.ui.core.min.js")) Me.Page.Header.Controls.Add(jquery_ui_core_min) Dim jquery_ui_widget_min As New HtmlGenericControl("script") …

Member Avatar for john_steve_85
0
1K
Member Avatar for mogaka

Hi brothers,i am creating an application that i want to load a pre-designed crystal report from database records and print it in pdf format and send it as e-mail attachment. I know how to send it as an attachment but i don't know how to print it in pdf automatically …

Member Avatar for mogaka
0
126
Member Avatar for mogaka

i am creating an invoice creation project where every client has a certain date for payment per month. how do i put the system to update next payment date e.g if client x is supposed to pay on 6th every month and has paid for april,the system should automatically update …

Member Avatar for adam_k
0
72
Member Avatar for rEhSi_123

Hi Guys, Need a bit of advice. Basically I am building a webcrawler and in order to do so I have to extract the page source of a webpage which I can do so like this: [CODE=VB] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim …

Member Avatar for rEhSi_123
0
226
Member Avatar for vijaybrar

Hi I have hard time connecting the if else statement because my teacher is telling us to use this kind of if else if (statement) if (statement) if (statement) condition else condition("error") end if else condition end if else condition end if this is a simple betting game can you …

Member Avatar for codeorder
-1
875
Member Avatar for symeramon
Member Avatar for mogaka

i have developed a system which needs to process funds transfer using means of mobile phone sms(short message sent). my problem is that i don't know how to intergrate the application with the sms gateway. suppose sms has been sent through the gateway,what will trigger the system to respond since …

Member Avatar for adam_k
0
82
Member Avatar for Fa3hed

[B]Text cASES in Vb.NET[/B] [LIST=1] [*][B]Sentence Case [/B][I](This is vb.net code)[/I] [CODE]Public Function SentenceCase(ByVal stringToConvert As String) As String Dim newStringBuilder As New StringBuilder newStringBuilder.Append(stringToConvert.ToLower) newStringBuilder.Chars(0) = newStringBuilder.Chars(0).ToString.ToUpper For letterCount As Integer = 0 To newStringBuilder.Length - 1 If newStringBuilder.Chars(letterCount) = "." Or newStringBuilder.Chars(letterCount) = "?" Or newStringBuilder.Chars(letterCount) = "!" …

Member Avatar for Fa3hed
0
417
Member Avatar for kallas

Hi, I am creating a online visitor tracking application in vb.net. This application tracks the visitor from my website and display records in my application. All the records are carry with xml web services [nusoap]. This Xml is bind to my datagridview control. Every time [on timer tick event] web …

Member Avatar for adam_k
0
92
Member Avatar for bigzos

I retrieved data from access in vb10 between two dates and here is the code for dat: [CODE]Imports System.Data.OleDb Public Class Form4 Dim con As OleDbConnection Dim cmd As OleDbCommand Dim dr As OleDbDataReader Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try con = New …

Member Avatar for adam_k
0
151

The End.