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

Software Development Network >> Baller4lifeII's Q&A profile

Baller4lifeII

Member List

BilalShouman
BSohante
dragoncells
Prabu.
Sridhar Kalyanaraman
jmcdonaldtucson
PhilJung
Eric Eichler
RMD
donbox5
ahallowell
Hiral
Yitzhak Steinmetz
RickKr
Sweeps78
yoga80
jam281
williambeaker
Thomas Israelsen
slippyC
Only Title

Baller4lifeII's Q&A profile

  • Visual C# VS2003: Has anyone found a solution to "File in use..." error when building?

    From time to time when you have multiple dependent projects in a solution, one or two projects will not build complaining that the dll destination is in used by another application.  This requires a VS restart before it goes away.  There were a number of dll locking issues that were fixed in the recent SP . Try installing it and see if it resolves your problems. Hope that helps, Anson ...Show All

  • .NET Development Reading file size and then store the name, date and size in database,

    I'm trying to make a program that basically say that every morning run this directory and scan through all the files. Then record the name, size and the date and then compare with the one that already existed in the database. If everything is match then pop up message say GOOD. If something has been changed then pop up a message say NOT GOOD. But aslo if i know that there was an update on the file so the date has been changed, that program should also have an update function to update the database. For instance File1 800kb 7/18/2006 File 2 1mb 7/17/2006 because this is the first time i run this program so i have to insert this into the data base. so after inserting, the database will have a list of file 2 and 1 with ...Show All

  • Windows Forms One or more errors encountered while loading the designer.

    I can't open a user control in designer: Message: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. The method or operation is not implemented. Hide at Microsoft.VisualStudio.Shell.Design.VirtualTypeImplementor.InvokeConstructor(ConstructorInfo ctor, Object[] args) at Microsoft.VisualStudio.Shell.Design.VirtualTypeBuilder.VirtualConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at System.Reflection.ConstructorInfo.Invoke(Object[] parameters) at System.SecurityUtils.SecureConstructorInvoke(Type type, Type[] argTypes, Object[] args, Boolean allow ...Show All

  • SQL Server error:no report server found on the specified machine while setting up reporting services configuraion manager

    Hello, I have installed sql server 2005 along with reporting services... though i am able to design report using business intelligence studio... i am unable to access the report server.... while trying to start the reporting services configuration manager it says no report server found on the specified machine...Invalid Namespace ... the installation is local ... Due to this problem inspite of designing the entire report i am unable to deploy it on the web..since it is asking for a report server... Can somebody please help me on this... Thanks in advance... Nirupa Hi Jarret, Thanks for your suggestions first, yes I installed IIS and it is running, and I couldn't find any fol ...Show All

  • Visual Studio 2008 (Pre-release) How to use gruop by in projection

    var query = from c in Context.customers join o in Context.orders join od in Context.orderdetails select new MyType{A = c.Name, B = o.ID, C = od.Quantity} Something like this...how to group this query by customer ID Actually, I need to get a row for every customer with infpormation about how much stuff he has ordered and for how much. thanks! ...Show All

  • .NET Development Debugging using STA

    In my program I have to use STA. How can be Mdbg used with STA I'm running Mdbg in MTA thread that starts a new STA thread and opens a WPF window. This works. But only one time. If I close this window and then start this thread one more time, I get exception from WPF, that says, that I'm trying to access object from other thread. ...Show All

  • Visual Studio 2008 (Pre-release) Debugging WCF server on Vista RC1 (x64)

    I'm having trouble debugging a WCF server on Vista. It seems that you are not allowed to bind to an adress without elevated privileges, this I fixed (when running *without* a debugger) using e.g http://mark.michaelis.net/Blog/WindowsCommunicationFoundationWithWindowsVistaAndUAC.aspx that is adding a manifest to exe requesting elevated privileges. The problem is, it seems this does not work under the Visual C# (Express) debugger (even though there is a exename.vshost.exe.manifest) with the correct content. I do not get a dialog asking to OK elevated privileges, it just behaves like the the manifest is not there ! ! How do I fix this easy way of fixing is,launch VS.NET under admin account,so it will have all privileges to debug apps (p ...Show All

  • Visual Studio 2008 (Pre-release) How to host a WBA on IIS 7.0 in Windows Vista Beta 2.0?

    When I follow the HOL: Building Web Brower Application with Windows Presentation Foundation and deploy a WBA with IIS 7.0, IIS can not work normally. After I copy the output content to c:\Inetpub\wwwroot\XBox and navigate IE 7.0 to http://localhost/XBox/XBox.xbap , I get a error page with following message: HTTP Error 404.3 - Not Found Description: The page you are requesting cannot be served because of the Multipurpose Internet Mail Extensions (MIME) map policy that is configured on the Web server. The page you requested has a file name extension that is not recognized, and therefore is not allowed. I try to follow the instruction to modify MIME type in IIS 7.0, but MIME type Management feature can not be found in IIS Manager. ...Show All

  • Visual C# Create a folder with permissions set to This Folder, subfolders

    Basically my app creates 4 folders that gives a specific user certain permissions. I can create the folder find, and i can give the user the correct permissions, but by defaulse it has Apply To set to this folder only, so if the user creates a folder, they wont have permissions to access it. I want to give it permissions that Apply to: This folder, subfolders, and files. I have spent hours upon hours trying different things, and trying to find the answer anywhere. Any help is greatly appreciated. Here is my code to create the folders: string mailDataPath = "E:\\Data\\MailData\\" + logonName; string userDataPath = "E:\\Data\\UserData\\" + logonName; string userProfilePath = "E:\\Data\\UserProfile\\ ...Show All

  • Visual Studio Express Editions unsigned char* to byte[]

    Hi, I'm using an external dll programed in C that have an struct like this: typedef struct{ float pin; float sustr; float adh; char* codiError; unsigned char * ImageM; int alt; int an; }Datos; and my struct in C# is this: public struct Datos { public float pin; public float sustr; public float adh; public string codiError; public byte[] ImageM; public int alt; public int an; } The call to the function that return this struct is this: public unsafe static extern Clases.Datos PruebaMalla(byte[] image, int an, int al, string path); Now I've the problem using my C# structure and calling the function. If i call the function with m ...Show All

  • Visual Studio Express Editions Compile Error C1010

    First off, I have already found a "work around ", just I don't get why the "workaround" is working. To keep this simple, this is part of my file layout. Project --Folder 1 ----A.cpp ----A.h --stdafx.h --stdafx.cpp I listed only the relevent files. A.cpp contians... #include "../stdafx.h" //Changing this to "stdafx.h" fixes the problem, but I don't know why, as the stdafx.h file is not in the same location as A.cpp . #include "A.h" Is there a reason that the compiler can't find the file when annotiated correctly, but putting "stdafx.h" fixes the problem. (also note, if you right-click "../stdafx.h" and select 'open document' VC opens the st ...Show All

  • Visual Studio Tools for Office String parsing in VBA 6.3

    New to VB. Simply trying to parse the zip code out of a string and placing the zip code into a new string. Looking at the Split method, but unable to get code working w/o errors. Sample string I am trying to parse is: 'Bakersfield,A CAA 93309 Any suggestions on the code snippet to cut the zip out and place it into a new string Thanks in advance. CT You will get more traction in the VBA user group . This forum is specifically for VSTO development see ths FAQ Non-VSTO Question/Resources on why this is not answered here. ...Show All

  • Smart Device Development to check if any memory cardis present on the device or not

    hi all, how do i check if there is a memory card present on the device or not is there any api to check this any small piece of code snippet which does this will be a great help.   thanks in advance cheers kulkarni Please see this, item #15: http://www.danielmoth.com/Blog/2005/03/please-read-before-posting-to-ng.html ...Show All

  • .NET Development DoEvents not working?

    This code doesn't seem to be working right. What I need to do is watch for left and mouse downs, and when both are down at the same time, show a window. This class should do it, but isn't working. The processMessage variable tells the mousehook to send the message to the appropriate window or to consume it. Public Class mouseComboWatcher Private WithEvents mh As WickedOrange.MouseHook Public Event ComboPressed() Public Event ComboReleased() Sub New () Me .mh = New WickedOrange.MouseHook End Sub Private leftMouseDown As Boolean = False Private rightMouseDown As Boolean = False Private comboDown As Boolean = False Private Sub mh_Mouse ...Show All

  • Windows Forms Add ActiveX component

    Hello everybody, i have a problem and can't find the solution maby anybode can help me... so i want to use LakeOfSoft ActiveX AxVCProX. AxvcproMediaGateX and when i add this ActiveX component through Toolbox everything works fine, but in my situation it isn't good choice, becouse i need to use it in Windows Service based application so i have no GUI... but when i try to create ActiveX component manualy in my code in runtime i have error: 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was thrown. for clarity i put simple windows based program sample code in which i get this exception: namespace Lakeofsoft { public partial class Form1 : Form { private AxVCProX.AxvcproMediaGateX Gate; public Form1() { ...Show All

©2008 Software Development Network