|
|
Hello there, I have this program for where i work. It is basically a windows form that covers the whole screen. However, after a few minutes of the program running the program closes. this is the code i use to get the window full screen
public mainLab()
{
InitializeComponent();
this.Size = SystemInformation.PrimaryMonitorSize;
this.Location = new Point(0, 0);
intLLKey = KeyBoardHooker.SetWindowsHookEx(KeyBoardHooker.WH_KEYBOARD_LL, hooker.LowLevelKeyboardProc
, System.Runtime.InteropServices.Marshal.GetHINSTANCE(System.Reflection.Assembly.GetExecutingAssembly().GetModules()[0]).ToInt32(), 0);
hooker.KillStartMenu();
}
And finally, I use a windows service that interacts with the desktop to start the process on log on.
|
|
|
|
|
Hi everybody!
i'm working Crystal Reports in VB.NET.
I'm don't know how to add a subreports in my reports...and show it in my project
if you cound not try then
msgbox("you will lose")
else
msgbox("you can change yourself")
end if
|
|
|
|
|
In menu: Crystal Reports, Insert, Subreport...
And how to show it: Several examples in BOL.
The need to optimize rises from a bad design
|
|
|
|
|
Hi,
My application working fine in the dev environment.But in the testing /production environment
it is not working because that environment has only
windows server 2003
IIS
I have prepared a MSI which will automatically install .net2.0 framework
In my application I have Used some microsoft VC++ dll's also along with .net dll's.
Now Iam getting "RUNTime Error" pop-up screen message as below
" The Application has been terminated in an Unusual Way"
On googling i came to know that some dll's like msvcrt.dll of windows server 2003 has to be changed...But Iam not pretty sure about it..
In Production/test environment there is only framework installed ,but there is no visual studio installed on it.may be due that this error may occur...
So kindly post your suggestions and views to help me
|
|
|
|
|
balu12345 wrote: In my application I have Used some microsoft VC++ dll's also along with .net dll's.
Use Google to search MSDN for deployment information. Here is an example.[^]
led mike
|
|
|
|
|
Hi, all.
i hope this is the right forum, if not please advise.
i'm trying to work with a ssh connection, for that i use the
Terminal Control Project (C# VT100 SSH Telnet)
By Sardaan Frostreaver from this site.
I need to work programmatically, send commands and check the results that the ssh connection gives. i can connect to the ssh server but i can't find how to work programmtically with this Terminal Control Project. i mean, how to catch the text from the connection that project makes and send commands.
if someone know this issue please help.
Thanks.
|
|
|
|
|
Don't cross post. Look at my suggestion in the other forum
"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,
I'm trying to add a sub menu as a combobox filled by a dataset.
Adding as main menu item it works, as a submenu not.
Here is the code.
Dim dsCBO As New DataSet
Dim GiacCBO As New ToolStripComboBox
Dim strSQL As String = "select item_id,descr from items;"
Dim strConn As String = Me.SQLConnString
Dim daLookups As New SqlDataAdapter(strSQL, strConn)
Try
daLookups.Fill(dsCBO)
With dsCBO
.Tables(0).TableName = "Item"
End With
Catch excFill As Exception
End Try
With GiacCBO
.ComboBox.DataSource = dsCBO.Tables("Item")
.ComboBox.DisplayMember = "descr"
.ComboBox.ValueMember = "item_id"
End With
AddHandler GiacCBO.SelectedIndexChanged, AddressOf GiacCBO_SelectedIndexChanged
GiacenzaArticoloToolStripMenuItem.DropDownItems.Add(GiacCBO)
The combobox is still empty ?!?!
Substituting the last code row with:
MenuStrip1.Items.Add(GiacCBO)
the GiacCBO object show all records of the dsCBO.
What's wrong ?
|
|
|
|
|
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
|
|
|
|