|
viciouskinid wrote: Is it possible to add text to skinbutton
The articles like the one you are using have their own forum/blog at the bottom of the Article. That would be the place to ask questions about any code from the article you want to use.
led mike
|
|
|
|
|
I tried that and havent got a response. Thanks anyway.
|
|
|
|
|
viciouskinid wrote: I tried that and havent got a response.
I don't see a post from you, nor one with this question about text in the forum for that Article.
Also you seem be completely ignoring the advice you got from senior developers when you asked this same question 3 days ago[^]
You seem very confused about extremely simple things. I strongly suggest you take the advice you were given 3 days ago.
led mike
|
|
|
|
|
Hi,I am new comer of Sql Server 2005 and visual studio2005.I want to check when user put his mobile number that time it will check,mobile number should start with +91 and check also the date format. 
|
|
|
|
|
Sritanu _ Ghosh wrote: want to check when user put his mobile number that time it will check,mobile number should start with +91 and check also the date format.
Okay, what is your problem you are having? Show some code of what you have tried, and maybe someone will help.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Actually I want some idea about that.At present I don't start to write the code. 
|
|
|
|
|
Sritanu _ Ghosh wrote: mobile number should start with +91
String class has Startswith function. You can use that.
Sritanu _ Ghosh wrote: check also the date format
Use DateTime.ParseExact
|
|
|
|
|
Operating System: Windows Vista
Microsoft Visual C#2008 Express Edition
After successful build, getting error as
"A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available".
Only two options are available in the error box as " Debug" & "Close".
Same application when compiled in windows XP OS machine, Application is working correctly.
Please help me if any one knows about it.
|
|
|
|
|
Hello, have you figured this one out?
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
|
HI, I need to design a form to INSERT multiple rows into database. I came up with putting textboxes forming a table. That may get the job done but it doesn’t seems to be the right thing to do. I wonder if there is a control that does the opposite of the datagridview. That instead of showing you the info of the database it lets you put information and then manipulate it to send it to a database.
|
|
|
|
|
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Hi I have just downloaded Visual C# 2008 and I am trying to get a handle on it. I have a bit of programming experience.
I want to implement this code http://www.codeproject.com/KB/cs/TransparentControls.aspx[^]but i have no idea how to implement it.
I can load the demo I just have no idea what is going on. how do you apply the source code to a new project to implement the SkinTooltip control. Can someone either let me know a good place to go and learn or even give me a bit of a walk through. Thanks
|
|
|
|
|
Hi I am fairly new to C# too. You can find help in the page in the C# section or just Google C# tutorial. "C# Station" was a big help at the beginning. Maybe you cannot implement the code because most examples and tutorials were written using C# 2005 I recommend you download and use that version at least while you learn the basics. 2008 is not much different but most of the code material was written in 2005 version.
|
|
|
|
|
Hi,
you seem to have two issues here. One is a new language, the other Windows programming.
IMO a language is best learned by studying an introductory book or tutorial on the language;
that way you get all the basic elements presented in a logical order, with examples and rationale.
You can get a good feeling for a language in a matter of say two weeks with a book and some experiments;
this of course depends on your background. Then start reading some articles on sites like this one.
Windows programming is a lot trickier; there sure are books that may help you with that too, but
I am afraid there is a much longer learning period. Tooltips are OK, not quite straightforward though.
Transparency is really tricky. I have been a Windows programmer for 20 years now, but I would
not volunteer explaining how transparency works (also due to the fact that I'm not that interested in it).
Hope this helps.
|
|
|
|
|
Cool you are new to C#, may I suggest you try simpler tasks first.
viciouskinid wrote: how do you apply the source code to a new project to implement the SkinTooltip control.
You can either compile it as a dll library and reference it, I did this earlier. Or, you can add a source file to your project and just add it in.
viciouskinid wrote: Can someone either let me know a good place to go and learn or even give me a bit of a walk through.
You came to the right place, this site is loaded with a lot of good help
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Hi all,
The application I developed takes some memory while doing its processing.
The memory only grows if the app is kept idle. But when I minimize it, the memory suddenly diminishes.
How can I free the memory without minimizing the window?
Please guide.
Thanking you!
|
|
|
|
|
Just after posting this question, I came across this site:
http://www.itwriting.com/dotnetmem.php[^]
Thanks to this forum where I got to this site.
Any further expertise would be great though.
Thanking you!
|
|
|
|
|
Hi,
I'm in desperate need of help. I'm very new to C# and have only limited exposure to ASP.NET. I'm developing a win form application.
Basically, the user clicks a button and imports a text file into a sorted checkedlistbox. That works so far.
The text file will hold a list of IDs that need to be retrieved from a table in my DB. I have a stored proc in the db that does the same but when I ran that via GetStoredProcCommand, I'm getting 'Array out of Bounds' exceptions.
I've tried GetStoredProcCommandWithSourceColumns, GetStoredProcCommand, ExecuteReader, and AddInParamter, all of which won't work. I know I'm making it harder than it really is since I'm also using VS2008. If stored procs won't work, I will settle for a regular select * from table where user = CheckedlistBox.CheckedItem as well. Once I have the users I need to work with, I have several stored procs that should be run depending on the what control the user clicks. I just don't why it's not working trying to run a simple proc. Thanks in advance for your help.
I've read, read, and researched every place I could before posting here as well.
Code below
//code to load/process IDs (from import to checkedlistbox) with a stored proc in a sybase table
private void ProcessListbutton1_Click(object sender, EventArgs e)
{
try
{
//open up database connection
Database _db = DatabaseFactory.CreateDatabase();
foreach (object sysuser in CheckedListBox1.CheckedItems)
{
DbCommand cmd = _db.GetStoredProcCommand("sp_ust_user_retrieve");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message) ;
}
-----------------------------
//import text file into Checkedlistbox
private void Importbutton1_Click(object sender, EventArgs e)
{
this.checkedListBox1.Items.Clear();
//this.checkedListBox1.GetItemCheckState();
OpenFileDialog Open = new OpenFileDialog();
Open.Filter = "Text Document|*.txt|All Files|*.*";
try
{
Open.ShowDialog();
StreamReader Import = new StreamReader(Convert.ToString(Open.FileName));
while (Import.Peek() >= 0)
checkedListBox1.Items.Add(Convert.ToString(Import.ReadLine()));
}
catch (Exception ex)
{
MessageBox.Show(Convert.ToString(ex.Message));
return;
}
this.checkedListBox1.BeginUpdate();
for (int x = 0; x < 0; x++)
{
this.checkedListBox1.Items.Add(x.ToString());
}
for (int x = 0; x < this.checkedListBox1.Items.Count; x++)
{
this.checkedListBox1.SetItemChecked(x, true);
}
this.checkedListBox1.EndUpdate();
I've tried databinding directly from the checkedlistbox and it returned all rows in the table - and overwrote what I imported. I only need to return rows from that table that are checked.
I hope this was clear. If not, please be patient with me and I will post whatever is needed. 
|
|
|
|
|
[rant]There you go using those bloody build in data management thingies, why does MS do this all the time, if you feed a newbie a GetStoredProcedureAndMakeItWork widget how are they expected to learn to actually work with a database.[\rant\
Please do the following. Learn what a Data Access Layer (DAL) is. This will sit between your code and the database (you need to write or snaffle one). This should be the tool you use to manage the data. Most developers will then use an Object Relationship Map ORM (often a table) class to represent your data. Your orm gets the data from the DAL and you can bind the orm to the UI in 2008.
This way YOU manage the data, you understand the ins and outs of the data not some black box in VS.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Hi,
I wasn't looking for a sarcastic answer but rather a real suggestion of what I should/shouldn't be doing to guide me in the correct direction.
If anyone can help, please reply. Thank you.
|
|
|
|
|
And you wonder why after 24+ hours you have no helpful supportive answer. Most "developers" will not be able to help with these MS supplied tools, simply because we don't use them. As for a senior dev pointing you in this direction, I would suggest the 5yrs may have been wasted.
The description of a DAL was meant to be helpful not sarcastic. Because of your moniker and the quality of the question I assumed you had no idea. Then again if you iknow what it is why ae you using the MS widgets to do your work!
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Mycroft Holmes wrote: I assumed you had no idea.
Safe assumption
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
And also, the previous code for that was suggested by a Sr. colleague who's been doing .NET deveoplment for at least 5 years now. He obviously knows what a DAL is and so do I. Rather than insulting him, I thought I would look here first because someone could provide
some guidance. Thanks. 
|
|
|
|
|
Hi,
I had written a webservice.Now I need help to accompolish the following goals..
1.How to host the webservice?..since this i have to use in windows application.
2.How to consume this webservcie through the C#.net windows application.
My task is to write the Webservice,using this I will pick some data and that data I have to pass to a windows application/windows service where I will update the database.
|
|
|
|