-
Replied To a Post in populating a combobox in datagrid
Here is a post that fills a combobox from a database. This may work for you. [Fill combobox from database](http://stackoverflow.com/questions/12494634/fill-combobox-from-database) -
Replied To a Post in populating a combobox in datagrid
Where are you clearing the items? It should be OleDbDataReader CMBRdr = DBcmd.ExecuteReader(); //add it here PhoneCombo.Items.Clear(); while (CMBRdr.Read()) { -
Stopped Watching How to Fix These Errors
I tried fixing these errors but to no avail. Can someone please explain to me what I need to do to fix them? #include <iostream> using namespace std; int main() … -
Replied To a Post in Open .exe form from .dll form
I'm confused by your explanation. Can you post the code or post some screen captures? -
Replied To a Post in populating a combobox in datagrid
Try clearing the PhoneCombo combobox before adding the items.` PhoneCombo.Items.Clear()` -
Replied To a Post in Help with calendar in VB10 in Visual Studio 2010
I made some errors when posting "Students.xml" above. The tags should follow the format: `<name> </name>` **Students.xml** <?xml version="1.0"?> <students> <schoolyear startMonth="08" startYear="2013" endMonth="05" endYear="2014"> <student id="1"> <name>John</name> <firstTestDateFSF>02/10/2014</firstTestDateFSF> <lastTestDateFSF>03/10/2014</lastTestDateFSF> … -
Replied To a Post in listbox
listBox1.Items.Clear(); -
Replied To a Post in Help with calendar in VB10 in Visual Studio 2010
Everything you mentioned is possible. You might consider using an XML file or a database to store your data. [Here](http://www.daniweb.com/software-development/vbnet/threads/474108/how-can-i-show-the-data-that-is-related-with-the-name-in-the-listbox-using) is a post I made about how to read an … -
Began Watching A c# code to select a file and get the name from local disk
Hello wizards Please i need some help from you all. I need to write a c# code to select files(pdf files to be precise) from any location on my PC. … -
Replied To a Post in A c# code to select a file and get the name from local disk
[PDF Library](http://techymedia.com/post/2012/09/09/Free-Dot-NET-PDF-Libraries-and-Components.aspx) -
Replied To a Post in Help with calendar in VB10 in Visual Studio 2010
Check line 91 on "Form1". You do the following: `TextBox3.AppendText(TextBox1.Text & TextBox2.Text & Environment.NewLine)` every time a date is selected. Private Sub MonthCalendar1_DateSelected(ByVal sender As Object, ByVal e As System.Windows.Forms.DateRangeEventArgs) … -
Began Watching Open .exe form from .dll form
So i have small problem. Idk how to explain so we will go like this. I have 2 projects. 1. MyLib its compiled .dll 2. MyApp its compiled .exe Okay … -
Replied To a Post in Open .exe form from .dll form
I haven't ever tried it, but [this article](http://www.dreamincode.net/forums/topic/165221-load-windows-form-from-dll-file/) talks about it. Click "Project" => "Add Reference" => "Browse" => <your dll> => "OK". Then add `Imports YourDLL` Create an instance … -
Began Watching How to Fix These Errors
I tried fixing these errors but to no avail. Can someone please explain to me what I need to do to fix them? #include <iostream> using namespace std; int main() … -
Replied To a Post in How to Fix These Errors
Yes. My mistake. -
Began Watching Help with calendar in VB10 in Visual Studio 2010
I am trying to figure out how when a name typed in textbox1 on Form2 and a date is selected in the DateTimePicker box on Form2 that the name will … -
Replied To a Post in How to Fix These Errors
Also one of your for loops is missing a "{" -
Began Watching IE 11 Will Not Open
Hi All It doesnt take much but i'm puzzled, all was working well with my Windows 7/ IE11 combination up until yesterday when i noticed that if i was connected … -
Replied To a Post in IE 11 Will Not Open
Backup your favorites from "C:\Users\<username>\Favorites" to somewhere else. Un-install IE 11. Reboot. Then re-install IE 11. Also run a chkdsk on your hard drive. Start => Computer => Right-click "C:" … -
Replied To a Post in how to generate batch in vb.net
Your question is unclear. Are you trying to write a batch script? If so, you should probably post it in "Shell Scripting". -
Replied To a Post in wpf detecting keypress when a window is not selected
[Low-level keyboard hook in C#](http://blogs.msdn.com/b/toub/archive/2006/05/03/589423.aspx) [Hooks](http://msdn.microsoft.com/en-us/library/windows/desktop/ms632589(v=vs.85).aspx) -
Began Watching wpf detecting keypress when a window is not selected
Is there any way to detect a keypress when your window is not active? I got a transparant window which is always visible ontop of other applications. Though the idea … -
Replied To a Post in wpf detecting keypress when a window is not selected
Use a keyboard hook. [Click Here](http://www.codeproject.com/Articles/7294/Processing-Global-Mouse-and-Keyboard-Hooks-in-C) for an article about mouse hooks and keyboard hooks. -
Replied To a Post in error with adodb connection
The driver name has a space in the name that should not be there. Remove the space after `*.accdb `. Change driver from: Driver={Microsoft Access Driver (*.mdb, *.accdb )}; To: … -
Stopped Watching Puzzled trying to get this to work...
I am making a quiz as part of my assignment for my computer science class and the aim is to make a flash quiz where keywords and their definitions are … -
Replied To a Post in how to add web page in windows forms project
Add a "WebBrowser" control to your current form (or create a second form and add it to that form). Then use "Navigate". Change the "Dock" and "Anchor" properties of the … -
Began Watching how to add web page in windows forms project
Hello there,,,,,,, In my project there is one window form and on that form I have one linkLabel control..... Now my question is that I want to add one web … -
Replied To a Post in Puzzled trying to get this to work...
The code I provided is basic, mostly repetative. Using dictionary is far more complex than the solution I provided. My code really only introduces 3 questions. 1. What is a … -
Began Watching Puzzled trying to get this to work...
I am making a quiz as part of my assignment for my computer science class and the aim is to make a flash quiz where keywords and their definitions are … -
Replied To a Post in Puzzled trying to get this to work...
You might consider using a class with Property values. **Quiz.vb** Public Class Quiz Private _question As String Private _answer As String Private _randomAnswer1 As String Private _randomAnswer2 As String Private … -
Replied To a Post in C# how to use for loop to calculate Body mass index?
I recommend using some useful names so it is easier to follow your code. Use something like "height", "startWeight", "endWeight" instead of "t1", "t2", "t3". I suggest that you use … -
Began Watching C# how to use for loop to calculate Body mass index?
i'm trying to create a program that calculates Body mass index in a for loop with 5kg gaps. BMI formula is: weight(kg)/height(meters squared) = BMI. How would this work? this … -
Began Watching multiview
how do i populate my events (radiobuttons,dropdownlist and checklist) and multiview code -
Replied To a Post in multiview
Your question is not clear. What are you trying to do? -
Began Watching populating a combobox in datagrid
hey all once again i have a little issue ... i'am really having a hard time with this issue i have a datagridview that contain one column as a text … -
Replied To a Post in populating a combobox in datagrid
You probably aren't going to receive many responses without posting your code. -
Began Watching Groovy regulat expressoin
Hi, Im just new to this language and I would like to know what does this groovy regular expression match too. I was not able to figure it by online … -
Replied To a Post in Groovy regulat expressoin
I don't really know anything specifically about Groovy--just some general regular expression stuff. [Here](http://groovy.codehaus.org/Beginners+Tutorial) is a resource that I found for Groovy. -
Stopped Watching Combobox Add items from database
I have gone through the articles appeared in this forum on the above Area.But it didn't helped me much,As I am new to VB.net. In VB6 I have the following … -
Replied To a Post in Object reference not set to an instance of an object
You probably need to add this after line 23: cmd = New SqlCommand() so your code will be: conn = New OleDbConnection(Get_Constring) conn.Open() cmd = New SqlCommand() cmd.Connection = conn … -
Began Watching Object reference not set to an instance of an object
im having this as my problem my connection to database is purely coded with the connection to the datagrid Public Sub btnProdSave_Click(sender As Object, e As EventArgs) Handles btnProdSave.Click Dim … -
Replied To a Post in How can I show the data that is related with the name in the listbox using
Before, I didn't have time to properly test the code. This one has been tested and hopefully will work for you. I've added some error checking to it. Use "Client.vb" … -
Replied To a Post in How can I show the data that is related with the name in the listbox using
When I pasted it, I may have missed a couple of lines. My apologies. Need to add `Imports System.Xml` Uses the "Client.vb" class from above. Private Function readXmlFile(ByVal filename As … -
Replied To a Post in How can I show the data that is related with the name in the listbox using
Ok. Here is a better way of doing it. Dim xmlName As Xml.XmlNode Dim xmlSender As Xml.XmlNode Dim xmlErrorWord As Xml.XmlNode Dim xmlFalseWord As Xml.XmlNode Dim xmlLink As Xml.XmlNode Dim … -
Replied To a Post in How can I show the data that is related with the name in the listbox using
I've attached the files. Once the data is in a list, you can just search the list. Or you could probably put the data into a dictionary. Then in the … -
Began Watching How can I show the data that is related with the name in the listbox using
Hello, i've been searching quite a while but haven't found the solution i'm after. I have a project where I need to show clients in a listbox imported from a … -
Replied To a Post in How can I show the data that is related with the name in the listbox using
There may be a simpler solution, but this one will work: **Client.vb** Public Class Client Private _id As String = String.Empty Private _name As String = String.Empty Private _sender As … -
Began Watching Combobox Add items from database
I have gone through the articles appeared in this forum on the above Area.But it didn't helped me much,As I am new to VB.net. In VB6 I have the following … -
Replied To a Post in Combobox Add items from database
This post may help you: [Click Here](http://www.daniweb.com/software-development/vbnet/code/445801/use-parameterized-queries-to-avoid-sql-injection-attacks) -
Began Watching 5 methods within 1 class
Trtying to figure out how to add 5 different methods into this class when the program already does all that is required but my prof will knock me if I …
The End.