Search Results

Showing results 1 to 30 of 30
Search took 0.01 seconds.
Search: Posts Made By: Clawsy ; Forum: C# and child forums
Forum: C# Jun 28th, 2009
Replies: 14
Views: 771
Posted By Clawsy
You are right. OK. I will search more and I will post if i find something :)
Forum: C# Jun 27th, 2009
Replies: 14
Views: 771
Posted By Clawsy
Please read that page. Does not include Y! Messenger. Those are some WEB services API's. Thanks for your replies! :) sorry i posted twice
Forum: C# Jun 27th, 2009
Replies: 15
Views: 5,701
Posted By Clawsy
not necessary borderless. He has a program with .NET i think. I don't have this problem and I have .NET 3.5. It's weird that it closes. It even works simple like this:

private void...
Forum: C# Jun 27th, 2009
Replies: 14
Views: 771
Posted By Clawsy
Baby, I just have to google what i seek: Yahoo! Messenger API and NOT web service API and a million ohter things I can google. So please read better: that does not include YM API. However thanks for...
Forum: C# Jun 27th, 2009
Replies: 14
Views: 771
Posted By Clawsy
Sorry but is that API for Yahoo! Messenger? or MSN?
Forum: C# Jun 27th, 2009
Replies: 14
Views: 771
Posted By Clawsy
haha. sure i did googled. u didn't ;) . It's API FOR WHAT???? c#? show me that. it's for c++ and java. C# is MANAGED CODE. remember :)
Forum: C# Jun 27th, 2009
Replies: 14
Views: 771
Posted By Clawsy
My question is:
How can I program things like: send a message, set my status, avatar, address book, image, etc... ? not just log in and log out.
Forum: C# Jun 27th, 2009
Replies: 14
Views: 771
Posted By Clawsy
As some of you know, there is a COM reference library called 'YahooMessengerLib'. What I have done with it until now was:
- Login with user and password
- Logout
YM must be started for use to use...
Forum: C# Feb 23rd, 2009
Replies: 13
Views: 798
Posted By Clawsy
i don't understand very well your problem. Give us the code, example... don't let us guess.
Forum: C# Jan 26th, 2009
Replies: 14
Views: 24,829
Posted By Clawsy
Thanks LizR, i agree, however I answered first:cool: . So what's the rule? Who gets +1 to 'solved threads'. Who answered first (with a good answer) or who answered last? :twisted:
Forum: C# Jan 26th, 2009
Replies: 2
Views: 699
Posted By Clawsy
yeah i read that before, i searched for this, like i said. the problem is i don't need null modem communication between computers. i need only to detect if 2 pins of the same COM port are directly...
Forum: C# Jan 26th, 2009
Replies: 12
Solved: redrawing panel
Views: 2,706
Posted By Clawsy
sorry in my post i didn't mean AutoSizeChanged event but SizeChanged event:

private void Form1_SizeChanged(object sender, EventArgs e)
{
this.Refresh();
}
Forum: C# Jan 26th, 2009
Replies: 12
Solved: redrawing panel
Views: 2,706
Posted By Clawsy
for minimize/maximize try AutoSizeChanged event:

private void Form1_AutoSizeChanged(object sender, EventArgs e)
{
this.Refresh();
}

If you open other programs (windows) over...
Forum: C# Jan 26th, 2009
Replies: 2
Views: 699
Posted By Clawsy
Hi,
I always tried and SEARCHED for this but low chances to find out the answer, an example. I try to DETECT whether 2 pins of COM port are connected or not. If you have at least very low...
Forum: C# Jan 26th, 2009
Replies: 12
Solved: redrawing panel
Views: 2,706
Posted By Clawsy
your description is a little bit confusing but let me guess: trigger the refresh() method for the form:

this.Refresh(); // for immediate redraw of the form and it's components
Forum: C# Jan 26th, 2009
Replies: 14
Views: 24,829
Posted By Clawsy
however that's the truth you walk through them, like i said till oyu get the selected one. It's not like a menu, you'll never find a SelectedItem property on a listview.
Forum: C# Jan 25th, 2009
Replies: 14
Views: 24,829
Posted By Clawsy
please mark this thread as SOLVED if it's helpful. AND IT SHOULD BE.
Forum: C# Jan 24th, 2009
Replies: 11
Views: 1,880
Posted By Clawsy
you should start learning using Microsoft.Office.Interop.Excel library. add it from COM reference. I give you here a simple example. I just import a string in Excel in cell (1,1). If you do this, try...
Forum: C# Jan 24th, 2009
Replies: 2
Views: 722
Posted By Clawsy
One method is to know the name of your application process (System.Diagnostics). Then, in Form_Load() check if your process name exists in the array list of all avaiable processes an if exists,...
Forum: C# Jan 24th, 2009
Replies: 5
Views: 369
Posted By Clawsy
LOL YOU ARE FUNNY !
did he mention that Label5 has Text property set to "" or something else? i thing anyone can figur this out. So don't feel to SMART:twisted:
Forum: C# Jan 24th, 2009
Replies: 5
Views: 369
Posted By Clawsy
It's wrong. you assigned the string element every time to Label5.
This is correct:

protected void Button4_Click(object sender, EventArgs e)
{

string[] stringArray...
Forum: C# Jan 24th, 2009
Replies: 14
Views: 24,829
Posted By Clawsy
You must simply "walk through the listview" till you get the index of selected row and then you can do whatever you want in that row LIKE THIS:

for (int i = 0; i < lv.Items.Count; i++)
...
Forum: C# Nov 13th, 2008
Replies: 2
Views: 1,693
Posted By Clawsy
Thanks for your interest Antenka(didn't help, no problem). In fact I would use that when I'll try to move my audio file to a different position. I found other way to RESTART my audio file when...
Forum: C# Nov 13th, 2008
Replies: 2
Views: 1,693
Posted By Clawsy
Hi,

I have a little project to do in C#, building an audio player. I tought the best way is to use Microsoft.DirectX.AudioVideoPlayback. I tried to code so that when I push the play button again,...
Forum: C# Oct 19th, 2008
Replies: 5
Views: 1,746
Posted By Clawsy
:) . LizR, you're right. The button ate my keys to access itself. THANKS! You solved my little annoying problem :) !
Forum: C# Oct 19th, 2008
Replies: 5
Views: 1,746
Posted By Clawsy
Thanks for reply. It has assigned 'button1_KeyDown' to the keydown property. 'button1' is focused. other keys work but those keys dont work.
Forum: C# Oct 19th, 2008
Replies: 5
Views: 1,746
Posted By Clawsy
Hello,
Recently I needed to assign keyboard control to my program; so and I searched the Internet, I found many examples but it seems all have one little problem(or it's my mistake?):
I use this...
Forum: C# Oct 15th, 2008
Replies: 7
Views: 5,487
Posted By Clawsy
It doesn't work. However thanks for reply.
Somebody else? Ideas?
Forum: C# Oct 15th, 2008
Replies: 7
Views: 5,487
Posted By Clawsy
Thanks for reply LizR.
Of course I googled that, and I had a little problem I'll tell you now. I made a reference to "Windows Script Host Object Model", then I included IWshRuntimeLibrary and I made...
Forum: C# Oct 15th, 2008
Replies: 7
Views: 5,487
Posted By Clawsy
I need little help on creating shortcut for my C# app. I want programmatically do this.
I intend to create a shortcut in startup menu folder. Maybe you could also show me how to start my app...
Showing results 1 to 30 of 30

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC