Software Development Network Logo
  • Game Technologies
  • Windows Vista
  • Windows Forms
  • Microsoft ISV
  • SharePoint Products
  • Visual C++
  • VS Team System
  • Visual Studio
  • Visual FoxPro
  • Visual C#
  • Visual Basic
  • IE Development
  • SQL Server
  • .NET Development
  • Smart Devicet

Software Development Network >> J A Y's Q&A profile

J A Y

Member List

Dawid Weiss
Teo97917
PureVision
enric vives
yokike
WingingIT
nil130180
ArronBrice
Mitch5713
Ayukawa
NickNotYet
dfl
kbalusu
Lotek Deviant
Rodrigo Chagas
M. U.
DreamingBear
Libol
Mohan1
kasmaq
Only Title

J A Y's Q&A profile

  • Visual Basic How do I save an Image.jpg after I have changed the valeue of a property id - Comments, Author, Keywords, etc.

    I have changed a property in a jpeg file. Now I want to save it. But all I can do is save it to another file name. It wont let me save it to the file from which I loaded it. Any and all help would be greatly appeaciated. FRED. 1. I've changed the pixel on my picturebox, now I want to save it. How can I do it   Dim NewPB As New PictureBox   Dim tmpbitmap As Bitmap   Dim x, y As Integer   For x = 0 To (PictureBox.Width / 2) - 1     For y = 0 To (PictureBox.Height / 2) - 1        Dim pixelColor As Color = tmpbitmap.GetPixel(x, y)        tmpbitmap.SetPi ...Show All

  • Visual Studio Team System File is exclusively checked out by another user

    Hi, how can I unlock files which are exclusively checked out by another user Thx, Petr What is happening if I am building/running a website and the system is trying to check out supporting .dlls that I am not intending on checking out I'm just running the site, and it is checking out all of these .dlls, causing everyone else to be locked up. ...Show All

  • Visual Studio nmake: control characters

    Consider the following rule: foo\rbar: @echo $@ Expected output is the target name, i.e. "foo\rbar". On one machine, though, the \r is interpreted as control character (carriage return), producing the output "bar" only (writing "foo", restarting at beginning of line, overwriting with "bar"). Windows XP Pro nmake 8.00.50727.42 A different machine also running XP Pro and the same nmake version shows the correct behaviour. Any ideas which settings to tweak Escaping by double backslashes works, but (as you might have guessed ) the above example is very simplified. Unfortunately, escaping the \r in the real environment isn't a viable option because we mu ...Show All

  • SQL Server Access to the property values for my expressions

    I may be looking too hard for this but I can't find a way around it. I have an Expression and in that expression, I want to access a property on the same object (it would be great to get the properties of other objects as well). Example: I have a flat file connection where I defined the name of the flat file in my ConnectionString. I also have a variable that I have it linked to my dtsConfig which points to the proper folder name at run time. How can I create an expression similar to this: @[User::strFolder] + @[Connectionstring] where @[User::strFolder] is my variable and points to the correct folder for the given server the package is running on and @[Conenctionstring] is my made up name to access the VALUE of the Connecti ...Show All

  • Visual Basic Unexpected effect when closing a form

    Hello all, I am developing a project that has several forms all globally visible: Public hndlToForm1 As frmForm1 Public hndlToForm2 As frmForm2 and so on. When switching from Form 1 to Form 2 for example, I want only form 2 to be open, so I use the following code: hndlToForm2 = New frmForm2 hndlToForm2.Show() hndlToForm1.Close() At this point my impression is hndlToForm2 points to an instance of Form 2 and, thanks to hndlToForm1.Close(), hndlToForm1 is NOTHING; however as I am debugging my code, that is not the case. Despite using hndlToForm1.Close(), hndlToForm1 is not NOTHING, the debugger shows. My questions follow: 1. Does this mean that hndlToForm1.Close() has not freed up the memory used by hndlT ...Show All

  • Smart Device Development Memory requirements for Compact Framework v2.0 and SQL Server Mobile

    Hi, I'm looking for some information on the memory requirements of installing the compact framework v2.0 and SQL Server Mobile onto a mobile device. What would be the minimum RAM/ROM requirements for the mobile device for installing both Thanks NETCF V2 is about 6 MB uncompressed/2 MB compressed. SQL Mobile core is about 1.5 MB uncompressed/.6 MB compressed. SQL Mobile replication support is about .7 MB uncompressed/.3 MB compressed. You need that amount of storage in order to install - PPC 03 compresses storage, WM 5.0 does not. Plus you need storage for your database, up to 4GB. RAM needed in order to run depends greatly on your application, could be as little as 2MB. Store your data in memory in DataSet or ...Show All

  • Visual Basic Preview Code Snippet

    Is there any way to preview a code snippet before placing it, from within Code Snippet Manager Thanks for the help. The Snippet manager is what I initially used, but did not see where you could preview the snippet. However, the VB Snippet editor is what I needed. Thanks again. ...Show All

  • Visual C# pdf file release version of C# 2005

    In 2005 C# , visual studio is generation pdb files for release version What is the purpose of pdb file for production deployment and I deploy application without pdb does it have any effect Thanks You can deploy the application without pdb files, no problem, especially that they can be quite large. They are useful in case when an exception occurs because you can see the line numbers in the stack trace, not only the function names. Also sometimes you might need to debug the release version and without pdbs it's not going to work properly. ...Show All

  • Visual Studio Team System HTTPS request time out.

    I receintly had a change to the web site to use HTTPS rather than HTTP for the sign-on. Now when I record and run a web test I hang on the sign-on page loading dependants. If I turn of Parse dependant requests, it works fine. Is there a reason behind this Thanks, Tom K. Tom, Can you try setting the following at the beginning of your web test. You can do this either by converting to a coded web test or by writing a WebTestPlugin. ServicePointManager.Expect100Continue = false; Josh ...Show All

  • Visual C++ MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup

    Hi Justin! i am completely new to this and have to learn the language fairly rapidly, got myself a decent book, but when i try and compile a simple hello world program i get the error:      Linking...    MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup    Debug\dont know.exe : fatal error LNK1120: 1 unresolved externals    Build log was saved at "file://c:\Documents and Settings\Justin Pyfrom\My Documents\Visual Studio 2005\Projects\dont know\dont know\Debug\BuildLog.htm" dont know - 2 error(s), 0 warning(s) the hello world code is in a .cpp file format and t ...Show All

  • Visual C# Capturing text from input

    Hi, I'm new to C# so please, bear with me! I'm trying to write a program which will respond to input from an IRC channel with a response based on that input. This is the start of my else-if statement. else if (inputLine.EndsWith( ":!test" )) What I would like is to be able to capture a word (or more than one word) typed after the "!test" and store t as a string to be used in the message sent back to the IRC channel. I've got all of the sending and recieving of message sorted - it's just this bit which I'm struggling with - is Regex the answer Thanks, Martin Hi, The below is the sort of command the program recieves: :Martinp23!n=martin@host81-159-64-160.range81-1 ...Show All

  • Visual Studio Tools for Office Why does the ContextSwitchDeadlock happens?

    I got following error in a very basic VSTO Excel Workbook project. My method responds to a hyperlink, sets some integer values in a 10x10 cells array; and then user rng.Find() to find a specific string. However, the last part is when the while loop continues trying to get the next string with rng.FindNext(foundRange). The strings are found, but then Excel does not return from it (it takes all my CPU time); and finally, I got this error. ContextSwitchDeadlock was detected Message: The CLR has been unable to transition from COM context 0x159bc0 to COM context 0x1598e0 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operation without pum ...Show All

  • SQL Server Modifying default Agile "Bug Rates" report in VSTS

    I want to modify the default Agile report "Bug Rates" and therefore followed the instructions "How to: Locate and Edit a Report" from the MSDN VSTS help. However after having saved the report from the Report Manager and adding it to a new solution in VS, I get an error as soon as I click on the Data-tab. The error is: "A connection cannot be made to the database. Set and test the connection string. Additional information: The Connectionstring property has not been initialized (System.Date). " The report works fine when I run it from the Team Explorer Report node, but does not run in preview mode from within the VS solution. I seems that the report is using a Shared Datasource, but that datasource can not be fo ...Show All

  • Software Development for Windows Vista Custom Activity

    So I tried to create a custom activity. So in the designer the string collection windows is there but is seems not to store my given Names. Can somebody tell me what's wrong some idea's Public Shared UserNameProperty As DependencyProperty = DependencyProperty.Register( "UserName" , GetType (Collection( Of String )), GetType (TaskActivity)) <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _ <ValidationOption(ValidationOption.Optional)> _ <BrowsableAttribute( True )> _ <DescriptionAttribute( "User name" )> _ Public Property UserName() As Collection( Of String ) Get Return CType ( MyBase .GetValue(UserNameProper ...Show All

  • SQL Server b-tree structure.....

    Can someone explain me or let me know the URL where I can find more details about b-tree structure. I am more intrested in the calculation that is done in one of the articles below. ---------------------------- Artcile ---------------------- With the 900 byte key, 8 rows can fit per database page. This means there will be 12500000 pages at the leaf level, 1562500 pages at the next level up in the b-tree and so on, giving a total of 12500000 + 1562500 + 195313 + 24415 + 3052 + 382 + 48 + 6 + 1 = 14285717 pages (including 1785717 to store the upper levels of the b-tree). -------------------------------------------------------------- How is 1562500 , 195313 , 24415 etc are calculated.... from 12500000 leaf pages. Approx. ...Show All

©2008 Software Development Network