|
listen,
i don´t know if that code is correct, but i think you want to fill combobox with data from table (id_user,user_name).
i don´t know vb but that stuff is really simple if you needed in c# code?!
did you triggered it (form_load event) so if fill combobox when page loads?
nelsonpaixao@yahoo.com.br
trying to help & get help
|
|
|
|
|
I have used a class derived from DatagridviewCell and overrided its OnPaint event to draw an image to the cell. My problem is when I run the program in XP style appearance the image loses its quality(sharpness) but when in Classical windows style appearance the image is fine. Does any one know why ?
|
|
|
|
|
We are developing a chat messenger using WCF.
We want to implement SSL security while login. I have read Gtalk (desktop application) also uses SSL while Login; but i dont know how.
Please give your valuable suggestions.
modified on Monday, September 22, 2008 2:08 AM
|
|
|
|
|
Hey guys, I'm working on a MSN client and I was woundering how to turn a string with Messenger Plus! stuff in it, into a label-like control.
Can anyone give me any pointers?
|
|
|
|
|
Hi All,
I am using Microsoft.VisualBasic.PowerPacks 3.0 DataRepeater Control in my window application. There is one Combobox in the ItemTemplate of the DataRepeater. Combobox binds in the "ItemCloned" event of the DataRepeater. Now there is a button outside the datarepeater. Onclick of that button I am retrieving the selected value of the Combobox. But it always come blank. Even the Combobox items are also counted as 0.
Is there anything I am doing wrong ?
Asp.Net version : 3.5
language : c#
Regards
|
|
|
|
|
That's Aragon wrote: Is there anything I am doing wrong ?
Probably
Bob
Ashfield Consultants Ltd
|
|
|
|
|
hi
1)How can i create a borderless form programitcally(C#)?
2)How to give Round Corner to them.?

|
|
|
|
|
1) Form1.FormBorderStyle = FormBorderStyle.None;
2) http://vckicks.110mb.com/custom_shape_form_transperancy.html
-Dave.
------------------------------------
http://www.componentone.com
------------------------------------
|
|
|
|
|
In the form load event, you can change the region of the form.
The Region object can be created from the GraphicPath object.
To set the Window form border invisible, you can set FormBorderStyle to None.
-ARETE-
|
|
|
|
|
my application id running on windows 2008 server.
i have some physical ip address and virtual ip address.
i want to get virtual ip address by using c#.
plz help me its an urgent.
|
|
|
|
|
Member 4732425 wrote: plz help me its an urgent
That's not how it works around here. People will offer help if they have the time to.
"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
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Hi All.
in Vb.NET there is a function called IIF..how to do function IIF in SQL 2005.i want use IIF function from VB.net to sql 2005.
thanhks for advance
if you cound not try then
msgbox("you will lose")
else
msgbox("you can change yourself")
end if
|
|
|
|
|
Wrong forum, you missed on both vounts, this is neither a VB nor a windows form questions. It is a SQL questions.
And the answer is - there is no equivalent TSQL function to IIF. You would have to use nested if statements.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Wrong forum, and VB.NET does not have IIF, AFAIK
"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
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Are you sure VB.Net doesnt have IIF??
Thas weird, cause ive been using it lately, but i guess it must be my VS version
Alexei Rodriguez
|
|
|
|
|
It's there in VS2008. Learned something new today. I always thought it was just a VBA thing
"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
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|
|
Its good to know it is in VS2008 too since its a great function
Too bad VB doesnt have ?? as c#
IIF is available in VS2005 too and maybe since 2003
Alexei Rodriguez
|
|
|
|
|
IIF has always been available to VB. The problem is that it is a function not an operator, which of course makes it nearly worthless. Starting with VS2008/VB9, the If operator was added that can be used to do the same thing as both the ?: and ?? operators depending on the number of arguments you pass.
condition ? truevalue : falsevalue becomes If(condition, truevalue, falsevalue)
condition ?? nullvalue becomes If(condition, nullvalue)
|
|
|
|
|
Good to know
Thanks
Alexei Rodriguez
|
|
|
|
|
Use CASE statements in SQL to simulate IFF
SELECT Category =
CASE type
WHEN 'popular_comp' THEN 'Popular Computing'
WHEN 'mod_cook' THEN 'Modern Cooking'
WHEN 'business' THEN 'Business'
WHEN 'psychology' THEN 'Psychology'
WHEN 'trad_cook' THEN 'Traditional Cooking'
ELSE 'Not yet categorized'
END,
price AS Price
FROM titles
Alexei Rodriguez
|
|
|
|
|
thanks your suggetion.Thanks so much
if you cound not try then
msgbox("you will lose")
else
msgbox("you can change yourself")
end if
|
|
|
|
|
Hi all!
I'm looking for a DataGrid likes Delphi's TdbCtrlGrid.
Delphi's TdbCtrlGrid works as a Panel, on what I can place any component where I want.
Thanks
|
|
|
|
|
Hi i'm searching for the same Control in WPF.
|
|
|
|
|
Hi all. I'm working on a project where users enter scripts in a richTextBox and syntax-highlighting would help. Can anyone recommend a windows forms control or extender that has this functionality? I've googled and found some, but would like a recommendation from someone who has used one and has had a good experience with it.
thanks --
--mike
|
|
|
|
|
Scintilla.net is a good component for that purpose. In addition it is free.(I am using it in an internal application). The only disadvantage is its learning curve.
|
|
|
|