Im trying to Get the ID column (which is int type) from items selected from a checkboxlist. The checkboxist is populated by the ID column (UserID). I want to get all the UserID values from the options selected in the checkboxlist and populate a table in sql server with the selected UserID's once a button is clicked.
Heres what I have at the moment...
foreach (ListItem oItem in UserChkList.Items) { if (oItem.Selected) { //Populate //--------- UserProject = new ob_UserProject();
[code]....
This is the line thats not functioning as i want it too. Returns an error 'Cannot implicitly convert type 'string' to 'int
Ok, so I'm writing this code and when I build it keeps saying cannot implicitely convert type int to string even though I declared my variables as string. Why is it giving me this error?
private static string Repair() { string result=""; string beep; string spin; Console.WriteLine("Does your computer beep on startup?:(y,n)");
const void insertStuff(const void *key, const int value){ // I want to convert the void pointer into one // of three types of pointers(int, string, or double) switch(value){ case 0: int *intPtr = key;
[Code] .....
But this causes an error of: "crosses initialization of int*intPtr"
i create two forms add a password in first form throgh user input and second form will open i want that password will automatically be added to second form. first form is ok working according to my expactations but problem that it does not enter pssword in second form i reference that textbox that is
stdfrm std=new std(); std.a=txtpwd;
it displays an error that cannot implicitly convert type system.windows.forms.textbox to string
My intent was to convert the string variable for the year to an integer data type. The code compiles but now cannot run on my system. I'm not sure what's going as to what the program is displaying.
Objective: Prompt the user for two years. Print all Comedy movies that were released between those two years.
#include <iostream> #include <cstdlib> #include <string> #include <fstream> #include <cctype> using namespace std; struct Movie { string name;
I'm writing a class "Property" for a program that manages different types of properties. This is my .h for y base class. I was trying to write a virtual void function to convert different children classes to strings that can be displayed, but Xcode is freaking out.
I had it as:
virtual void toString()= 0;
and it gave me an error message: "Virtual can only exist in non-static member functions" and "field has incomplete type 'void'"
I changed it to:
virtual string toString() = 0;
and the error message didn't change.
Is this an issue with Xcode or did I do something wrong? Even after changing it to string it told me that it "has incomplete type 'void'"....
I get the error at the line "ptr1 = new node;" I tried putting a default constructor for my node struct and that fixed the problem but a new problem arises. It states that i have a linker error after i compile it with a default constructor.
I am trying to make a automated menu. It shows there are no syntax errors but when compiled it says cannot convert choice from type into to menuItemType. I am not sure what I did wrong. Here is the code
So I query out data from multiple tables and I put it as anonymous type. But since I need to get the remove function going, my datagridview has to get datasource from a bindinglist, not just a list. What could I do from this situation? I already checked: [URL] but intellisense doesn't pick up the .ToBindingList() function for my query.
I have a txt file of drinks, and I want to meak a list of buttons of it (the txt file is build like this: fanta : 2 ), how can I make buttons of all the drinks ( I get the first one in a button , but not the others).
Dictionary<string, double> drank = new Dictionary<string, double>(); string[] words = new string[8]; Button button; <Button> BtnList = new List<Button>();
i have an xml which is in showing in multilines and the tags are not in single line and are discontinued in next line .I need to this xml to be in correct format and want to display as xml .
i want to convert the Digits in words.I have already a code but in my code the value is coming like for ex:-540000(Five hundered and Fourty Thousand ).but i want Five Lakh and Fourty thousand.
I'm working on WPF project and There is this problem with property grid control. Here I saw the similar problem solved in windowsform project. how I can accomplish this behavior on WPF.
I am need to compare 2 items from 2 separate drop down lists. These values are of int type. Say for example 2 drop down lists showing years. Now i need to find out these 2 years selected is greater or nearer to the current year.
I tried converting the values i receive from the drop down lists to int variables. But i am getting error then. I gave it like below.
int tmp = Convert.ToInt32(ddl_1.SelectedItem.Text);
this gives an error like this - Input string was not in correct format.
I need to know how to put an item from a drop down list to a variable of int data type.