• Member Avatar for cgeier
    cgeier

    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)
  • Member Avatar for cgeier
    cgeier

    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()) {
  • Member Avatar for cgeier
    cgeier

    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() …
  • Member Avatar for cgeier
    cgeier

    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?
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in populating a combobox in datagrid

    Try clearing the PhoneCombo combobox before adding the items.` PhoneCombo.Items.Clear()`
  • Member Avatar for cgeier
    cgeier

    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> …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in listbox

    listBox1.Items.Clear();
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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. …
  • Member Avatar for cgeier
    cgeier

    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)
  • Member Avatar for cgeier
    cgeier

    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) …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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() …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in How to Fix These Errors

    Yes. My mistake.
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in How to Fix These Errors

    Also one of your for loops is missing a "{"
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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:" …
  • Member Avatar for cgeier
    cgeier

    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".
  • Member Avatar for cgeier
    cgeier

    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)
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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.
  • Member Avatar for cgeier
    cgeier

    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: …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    Began Watching multiview

    how do i populate my events (radiobuttons,dropdownlist and checklist) and multiview code
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in multiview

    Your question is not clear. What are you trying to do?
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in populating a combobox in datagrid

    You probably aren't going to receive many responses without posting your code.
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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.
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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" …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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 …
  • Member Avatar for cgeier
    cgeier

    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)
  • Member Avatar for cgeier
    cgeier

    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.