Quantcast
Channel: MSDN and TechNet Profile and Recognition System Discussions forum
Viewing all 741 articles
Browse latest View live

How do I make my Profile Private

$
0
0

Hi,

How do I make my Profile Private.... I have a forum member who is jumping in on every question I answer... It is obvious that he/she is monitoring my questions and answers through my profile activities.

Short of filing an abuse report, I am happy to deny them the convenience of tracking my every answer.

Regards.


Rob^_^


visual studio

$
0
0
o sir,

           I downloaded the visual studio 2008 express .

I install it and after that I install colibri SDK wince7 file of toradex from toradex site.(developer.toradex.com)

but it give error that

"ToolsMsmCA(error): visual studio  Smart  Device Programmability not correctly installed.please install visual studio 2005: createinstant(CDeviceSDKinstallshim{B888FC95-8C8D-4C70-9BB6-DA1360218661}failed."

please help for that

visual studio

$
0
0
o sir,

           I downloaded the visual studio 2008 express .

I install it and after that I install colibri SDK wince7 file of toradex from toradex site(developer.toradex.com)

but it give error that

"ToolsMsmCA(error): visual studio  Smart  Device Programmability not correctly installed.please install visual studio 2005: createinstant(CDeviceSDKinstallshim{B888FC95-8C8D-4C70-9BB6-DA1360218661}failed."

please help for that

support

$
0
0

hello sir,

           I downloaded the visual studio 2008 express .

I install it and after that I install colibri SDK wince7 file of toradex given on toradex site

but it give error that

"ToolsMsmCA(error): visual studio  Smart  Device Programmability not correctly installed.please install visual studio 2005: createinstant(CDeviceSDKinstallshim{B888FC95-8C8D-4C70-9BB6-DA1360218661}failed."

please help for that

Bluetooth helped needed.

Profile reset

$
0
0

How was my profile reset on this forum site? I had points as well as threads and all of a sudden one day, I cant even see my pic.

How is it possible?

Kaspersky client protection turned off

$
0
0
I have a client system on the domain that have kaspersky 10.0 installed using security center server. But the protection is turn off.How do I turn it on either from the server or the workstation

New Achievements - Gold, Sliver, Bronze?

$
0
0
I'm curious...what are they?
Ctrl+Z

Is the MCC award still in operation?

$
0
0
Is the MCC award still in operation? I notice that no one was awarded for MCC from May 2012.

porque utilizar visual studio con c sharp

$
0
0

resulta que estoy desarrollando un programa para un hotel de reservas , mi duda es que soy novato en esto del diseño de software y no tengo idea de que version de visual studio utilizar y porque ?  y a la vez, tampoco se el costo de las licencias de visual y por ultimo que motor de base de datos me recomiendan y porque ??

desde ya muchas gracias !!

 

Important Suggestion

$
0
0

Just a few minutes ago I traced a member of the forum violating the rules and posting multiple Female Escort Advertisements. I nearly reported as abusive about 40+ of them but he isn't stopping.

By the time some moderator notices this he will probably fill the help forum recent question page completely with his rubbish. This should be stopped.

There should be a way to prevent a member from posting or commenting if he/she gets say 5 abusive reports again him/her (until they are checked).

This is the guy's profile.

http://social.msdn.microsoft.com/Profile/vansikakhan/activity

Migration of Asp.net web Application to Asp.net MVC application

$
0
0

Hi,

Kindly let me educate which is the right approach to migrate the existing asp.net application to asp.net MVC application, or is it better to develop the MVC application from scratch ....

Please provide me the right and fast solution, also I am looking this performance point of view.

Thanks.

WPF C# datagrid fix view row (fix scroll)

$
0
0

i am working on WPF datagrid and want to fix view after insert row at top, whenever row insert at top view scroll down by 1 row, i am using following code

int i = 0; DataTable dt = null;

private void UserControl_Loaded(object sender, RoutedEventArgs e) { dt = new DataTable(); dt.Columns.Add("Col1"); dt.Columns.Add("Col2"); DispatcherTimer dtimer = new DispatcherTimer(); dtimer.Tick += new EventHandler(dt_Tick); dtimer.Interval = new TimeSpan(0, 0, 1); dtimer.Start(); dataGrid1.DataContext = dt; } void dt_Tick(object sender, EventArgs e) { DataRow dr; dr = dt.NewRow(); dr["Col1"] = i; dr["Col2"] = i; dt.Rows.InsertAt(dr, 0); i++; }

i tried to use dataGrid1.ScrollIntoView(dataGrid1.SelectedItem); but it still need selected item, and even it scroll down till last row in view

I can manage to do the same in DataGridView of windows form in following way

DataGridViewCell cell = dataGridView1.FirstDisplayedCell;
dt.Rows.InsertAt(dr, 0);
dataGridView1.FirstDisplayedCell = cell;

looking for any similar ways to do this in WPF also

Thanks.


encryption and decryption in c# unable to decrypy pdf, doc file

$
0
0

it's work only for text file can any help me how to do it for all kind of files ex: pdf, word etc
the below code encoding all files but while in decrypting it's decoded to some char
guys plz help me out.... 

protectedvoid FileUpload(int size,string CntType)

        {

            conn.Open();

           SqlCommand cmd = newSqlCommand("insert into FileDetails values('"+ File1.FileName +"','"+ CntType + "','"+ size + "','"+DateTime.Now + "')", conn);

            cmd.ExecuteNonQuery();

            cmd =newSqlCommand("select max(FileID) from FileDetails", conn);

           using (SqlDataReader dr = cmd.ExecuteReader())

               if (dr.Read())   

                {

                    lstFile.Items.Clear();

                    lstFile.Items.Add(" \t Keyword Encryption ---->  ");

lstFile.Items.Add("----------------------------------------------------");

                   string[] str=txtKeyword.Text.Split(',');

                   foreach(string wordin str)

                    {

                       string strEncrypt = Homomorphic.DesEncrypt(word.ToLower(),true);

                        lstFile.Items.Add(" \t   "+ strEncrypt);

                       SqlCommand cmdindex = newSqlCommand("insert into Indexing values("+ dr.GetValue(0) +",'"  + strEncrypt + "')", conn);

                        cmdindex.ExecuteNonQuery();

                    }

                    dr.Close();

lstFile.Items.Add("------------------------------------------------------------");

                }

       }

protectedvoid btnUpload_Click(object sender, System.EventArgs e)

{

try

       {

             for(int i=0;i<Request.Files.Count;i++)

                     {

                          if(Request.Files[i].FileName.Trim().Length >0)

                           {

                                 HttpPostedFile file=Request.Files[i];

      if(file!=null&& file.FileName.Length>0)

                        {

     string strmsg = string.Empty;

     byte[] fileData = newbyte[file.ContentLength];

      file.InputStream.Read(fileData, 0, file.ContentLength);

      strmsg = System.Text.Encoding.UTF8.GetString(fileData);

     string ps = Homomorphic.DesEncrypt(strmsg.ToLower(),true);

using (StreamWriter writer =newStreamWriter(Path.Combine(GetCurDir(),Path.GetFileName(file.FileName)), true))

{

    writer.WriteLine(ps);

     writer.Flush();

}

FileUpload(file.ContentLength,file.ContentType);

Response.Write("<script language='javascript'>alert('Encrypted & Uploaded !')</script>");

lstFile.Items.Add(" \t File Encryption  ----> ");

lstFile.Items.Add("------------------------------------------------------");

lstFile.Items.Add(" \t  "+ ps);

}

}

}

BindData();

}

catch(Exception ex)

{

lblError.Text=ex.Message;

}

}

 

How to Retrive the file name from given file path?

$
0
0

The file path:

"C:\Program Files\Microsoft SQL Server\MSSQL.1\Samples\Microsoft SQL Server Engine Samples\Full Text  Search\ItemFinder\Documents\Crank Arm and Tire Maintenance.doc"

I want to retrive  only file name (i.e.Crank Arm and Tire Maintenance.doc) from above file path


Updated avatar with a .gif file- 305kb

$
0
0

   I just (or I think I have) updated my avatar with a .gif file that is 305kb. Size: 215x215. It has animation, but the animation is not showing. The FAQ section states for avatar pics:

----------------------------------------------------------

Why am I receiving an error while setting my avatar?

You might receive an error while setting your avatar because of the following reasons:

    • The size of the image being uploaded is greater than 1 MB.
      • Select an image that is smaller than 1 MB in size. If your image is not in the jpg format and around 220x220 in pixel size, use your favorite image editor to create the image and then try uploading again.
    • The file is not in the preferred file format (i.e. is not in the GIF, JPG or PNG file format).
    • Convert the image you wish to upload into a GIF, JPG or PNG file and then try uploading again.

----------------------------------------------------------

    Any help you can give is appreciated.


used: Dos, MSDos, Win3, Win95, WinXP, Vista, Win7, and Win8 || AIX/Linux, etc: HP AIX, IBM AIX, Ubuntu, OpenSUSE, Puppy Linux, OS/2, VM/CMS, SAP




Technet Do's and Do Not's

$
0
0

Hello Technet Team's and other Members.

Can i get the Exact do's and do not's of Technet Wiki, Galleries and forums and all the technet profile supported things.


Regards, Prakash Nimmala Skype : Prakash.Nimmala Email ID : prakash.nimmala@hotmail.com Whenever you see a helpful reply, click on Vote As Helpful & click on Mark As Answer if a post answers your question.

Body text cannot contain images or links until we are able to verify your account

$
0
0
Body text cannot contain images or links until we are able to verify your account

ไทย

Microsoft Partner Attribution Not Shown In MSDN Profile

$
0
0

Hello, I just started to complete my MSDN profile which was created in Feb, 2012. I am also a Microsoft Partner and Microsoft BizSpark Startup. I need to know why my Microsoft Partner Network attribution is not being shown in my public MSDN profile.

Thanks in advance!

Viewing all 741 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>