Click here to Skip to main content
15,887,444 members
Home / Discussions / C#
   

C#

 
GeneralRe: Insert img into sql without using sqlparameter Pin
mohammadkaab4-Apr-13 23:05
mohammadkaab4-Apr-13 23:05 
GeneralRe: Insert img into sql without using sqlparameter Pin
Eddy Vluggen5-Apr-13 0:29
professionalEddy Vluggen5-Apr-13 0:29 
GeneralRe: Insert img into sql without using sqlparameter Pin
Richard Deeming5-Apr-13 1:41
mveRichard Deeming5-Apr-13 1:41 
GeneralRe: Insert img into sql without using sqlparameter Pin
BobJanova5-Apr-13 5:15
BobJanova5-Apr-13 5:15 
GeneralRe: Insert img into sql without using sqlparameter Pin
Keith Barrow5-Apr-13 2:44
professionalKeith Barrow5-Apr-13 2:44 
GeneralRe: Insert img into sql without using sqlparameter Pin
Jason Gleim5-Apr-13 11:01
professionalJason Gleim5-Apr-13 11:01 
AnswerRe: Insert img into sql without using sqlparameter Pin
cursore844-Apr-13 23:25
cursore844-Apr-13 23:25 
Questionc# exchange server 2007 set user properties Pin
Member 97066334-Apr-13 20:52
Member 97066334-Apr-13 20:52 
How do i change user properties.


public string SetAttributesValue()
{
try
{
RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
PSSnapInException snapInException = null;
PSSnapInInfo info = rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.Admin", out snapInException);
Runspace myRunSpace = RunspaceFactory.CreateRunspace(rsConfig);
myRunSpace.Open();
Pipeline pipeLine = myRunSpace.CreatePipeline();

Command myCommand = new Command("Get-user");
myCommand.Parameters.Add("Identity", sUserName);
pipeLine.Commands.Add(myCommand);
Collection<psobject> commandResults = pipeLine.Invoke();



foreach (PSObject cmdlet in commandResults)

{


}

return commandResults.ToString();
}
catch (Exception Ex)
{
MessageBox.Show(Ex.Message);
}

return null;
}
QuestionDll sharing and autoupdate application Pin
jp19814-Apr-13 20:14
jp19814-Apr-13 20:14 
AnswerRe: Dll sharing and autoupdate application Pin
Eddy Vluggen4-Apr-13 22:29
professionalEddy Vluggen4-Apr-13 22:29 
GeneralRe: Dll sharing and autoupdate application Pin
jp19814-Apr-13 22:59
jp19814-Apr-13 22:59 
GeneralRe: Dll sharing and autoupdate application Pin
Eddy Vluggen5-Apr-13 7:02
professionalEddy Vluggen5-Apr-13 7:02 
AnswerRe: Dll sharing and autoupdate application Pin
AmitGajjar5-Apr-13 20:38
professionalAmitGajjar5-Apr-13 20:38 
GeneralRe: Dll sharing and autoupdate application Pin
jp19815-Apr-13 23:46
jp19815-Apr-13 23:46 
QuestionProblem about size with creating excel file using xml spreadsheet ? Pin
taibc4-Apr-13 18:01
taibc4-Apr-13 18:01 
AnswerRe: Problem about size with creating excel file using xml spreadsheet ? Pin
Mycroft Holmes4-Apr-13 20:07
professionalMycroft Holmes4-Apr-13 20:07 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
taibc4-Apr-13 20:19
taibc4-Apr-13 20:19 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
Mycroft Holmes4-Apr-13 20:58
professionalMycroft Holmes4-Apr-13 20:58 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
taibc4-Apr-13 21:48
taibc4-Apr-13 21:48 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
Mycroft Holmes4-Apr-13 22:02
professionalMycroft Holmes4-Apr-13 22:02 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
taibc4-Apr-13 22:05
taibc4-Apr-13 22:05 
AnswerRe: Problem about size with creating excel file using xml spreadsheet ? Pin
Eddy Vluggen4-Apr-13 22:30
professionalEddy Vluggen4-Apr-13 22:30 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
taibc4-Apr-13 22:43
taibc4-Apr-13 22:43 
AnswerRe: Problem about size with creating excel file using xml spreadsheet ? Pin
Eddy Vluggen5-Apr-13 0:28
professionalEddy Vluggen5-Apr-13 0:28 
GeneralRe: Problem about size with creating excel file using xml spreadsheet ? Pin
taibc5-Apr-13 0:34
taibc5-Apr-13 0:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.