Software Development Network Logo
  • Windows Live
  • Windows Vista
  • VS Team System
  • Visual FoxPro
  • SQL Server
  • Architecture
  • Windows Forms
  • VS Express Editions
  • Game Technologies
  • Visual J#
  • Microsoft ISV
  • .NET Development
  • Visual C#
  • Visual Studio
  • Visual C++

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

abdoessalam

Member List

SRasheed
June Shi
Alan Pa
KB__
Brian2
sharpguy
vsts2005
Scav
imok
JVS
Bil Click
ivanw
Indinfer
Stefan Barthel
Suricate
Nidal-Fouad-Hajj-Youssef
Krodinjw
Diamond.Yu
M W
stevebio
Only Title

abdoessalam's Q&A profile

  • Visual Studio Can beta 2 coexist with Visual C++ 5.0 ?

    I know, I am from the previous century :-), still using Visual C++ 5.0. If I installed beta 2, could I still work with my ancient Visual C++ 5.0 Regards, Siggy Thanks. It works so far, with the Express Version, the full beta is yet to arrive but I guess there won't be any difference. Siggy ...Show All

  • Visual Studio Have both a ProjectCollection and ProjectItems in a Solution vstemplate

    Hi! I hope this is the right forum to ask this question... I'm trying to have a solution template (.vstemplate file) that has both a ProjectCollection element with ProjectTemplateLink's inside, AND ProjectItem's. Something like this : <VSTemplate Version="2.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005"> ... <TemplateContent> <ProjectItem TargetFileName="readme.txt">readme.txt</ProjectItem> <ProjectItem TargetFileName="todo.txt">todo.txt</ProjectItem> <ProjectCollection> <ProjectTemplateLink ProjectName="Project1">Projects\Project1\Project1.vstemplate ...Show All

  • Windows Forms Help me to getting value in another form (C#)

    I have 2 form: form1; form2 in form 1: textBox1 and Button1 code Button1_Click(){       form2 f = new form2();       f.show()} help me to get value in textBox1 (form1) at form2 thank you alot! ... I try in form1  public string getStringValue() {    return myText.Text; } Button1_Click(){    form2 f = new form2();    f.frm = this;    f.show(); } in form2: public Form1 frm; Form2_Show(){    MessageBox.Show(frm.getStringValue()); } that ok! ...Show All

  • SQL Server Execute SSIS package from ".vbs" file

    I need to execute a SSIS package from a ".vbs" file on a computer that don't have SSIS installed on it. Thank You The only way to remotely execute a SSIS package is to set up a SQL Server Agent job to run the package and run that remotely. If you can find a way of doing that in a .vbs file then you're laughing. -Jamie ...Show All

  • Visual C++ creating exe's and running them

    this is probably an extremely obvious question... but when i type in my code How do i run it I have tried "building" my project but then i don't know how to run the app once it has been built/ Hi! Thanks for the reply, but the answer is in this forum: Can't create .exe file Regards, Frank ...Show All

  • Windows Search Technologies Address bar - locked

    my address bar will to type in the full name of a web site, but once complete it will not pull up the site, it stays on the main msn page. Like typing in www.miamidolphins.com - but while typing it will drop down and offer a list of sites, if i pick one of those I can go straight to the sight or choose from my favourites. but to actually type a new site name in the address bar and click go - it goes no where. how do I solve this i do have google and msn tool bars open help maggie ebersold Hi Maggie, Your issue doesn't appear to involve Windows Desktop Search - does it Thanks, Bill ...Show All

  • Visual Basic Creating a program that can save in a specific file format.

    Hello, I was wondering how (and if) to create a program that will allow me to type some text, make some selections, and then save it. What I need to know is how to save the program then be able to re-open it properly. Thanks for any help. When you say "make it select the file format" I'm guessing that "it" refers to the Save and/or Open dialogs. Is that correct If the extension .TMS is the only extension you wish to support, then you set the DefaultExt property on the Dialog Control to "tms", and the filter property on the dialog to "File Type Description|*.tms" ...Show All

  • SQL Server SQL Authenfication

    Hi, i m trying to connect to msssql 2005 with SQL Authentication .but without success. "Server authentication is set to SQL Server and Windows Authentication mode". on connect i recive this error "Login failed for user ''. The user is not associated with a trusted SQL Server connection. [CLIENT:]" any help would be nice Luka Does your computer have the latest version of MDAC (2.8 SP1) You can download it from <a href="http://www.microsoft.com/downloads/details.aspx familyid=78cac895-efc2-4f8e-a9e0-3a1afbd5922e&displaylang=en"> Microsoft.com</a ...Show All

  • Visual C++ std::cout - override/replace/redefine?

    Hi, I want to "catch" or redirect all information that is printed/written to std::cout and std:cerr. Instead of printing it to a console window, I want to pass all the information to my own Log(string logEntry)-method (or write to a common memory area/char buffer). I have seen that it is possible to redirect all std::cout-calls directly to a txt-file like this: // Set up a file stream ofstream output( "output.txt" ); // Redirect "cout" to file stream "output" cout.rdbuf(output.rdbuf()); Instead of writing all cout to the output.txt-file, I would like to pass the information on to my own Log-method. Suggestions -Thanks! ...Show All

  • Visual Studio Team System Let the submitter close the issue only?

    if A submits a issue in VSTS, currently any one can close the issue. How to implement a rule. only A can close the issue. It's in the VSIP SDK here: http://www.vsipmembers.com/downloads/28/UserFileDownload.ashx Brian ...Show All

  • Visual Studio How do I add an empty project folder?

    I am trying to add an empty folder "Entities" and create a template reference that is bound to that folder. I am having difficulty accomplishing this. I can create a project folder through an action (in my create solution recipe), but then how do I add the reference It keeps telling me that the folder does not exist (when I try to add the reference through the project template). It seems like this should be an easy task to complete. Thoughts Hi, Create a simple project, add folders to it and then do "File -> Export Template", you will get .vstemplate and .xxproj files ge ...Show All

  • Smart Device Development NotSupportedException in PInvoke for .NetCF C# project

    I have a dll in C++ with a function called fun1: typedef void (WINAPI *fp)(); typedef struct info { DWORD size; RECT rc; fp funPtrcb; }*info; _declspec(dllexport)DWORD WINAPI _cdecl fun1(IN info pinfo); My C# application has this code: public delegate void CB(); public struct Init { public UInt32 size; public RECT rc; public CB funptr; } [DllImport("xxx.dll")] public static extern Int32 fun1([In,MarshalAs(UnmanagedType.LPStruct)] Init initstruct); Init in = new Init(); CB myCB = new CB(method1); init.funptr = myCB; int x = fun1(init); I f ...Show All

  • Visual Studio access project files through automation

    I have a custom macro that reads a file using the code Dim file As ProjectItem file = DTE.Solution.FindProjectItem( "myfile" ) file.Open() If file.IsOpen Then This works fine when there is only one "myfile" in a solution. What I am really looking for is to open the current "myfile" in the currently selected project. The documentation has me going around in circles. Can anyone point me in the right direection The Dte has an ActiveSolutionProjects property where you can get the list of active (selected projects). For each project, you can check ...Show All

  • Visual Studio Team System Reports are not showing the newest information

    Hi guys, i’ve tried everything, from deleting and rebuilding the TFSWarehouse database to changing the cache control in the report client, nothing is working for me.... My reports are working but they seen to ignore the newest data that my team is producing... i cannot get the newest data from the last 5 days... I’ve read the other posts but nothing worked, any sugestions []'s Ciro Fonseca Hi Ciro, Have you gone through the warehouse Troubleshooting Guide http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=154526&SiteID=1 If so, can you post results for each check in there Thanks, Brad ...Show All

  • Visual FoxPro Cannot updat the cursor FOXRESOURCE, since it is read only.

    Dear experts, I've VFP6 & 9 installed in the same win2000 professional. in VFP9, when I tried to close take pane manager it shows the above message. Also Set As Default button is greyed in Options so I needed to set it every time I start VFP or avoid to quit. Is there any way to fix it Thanks. Exit out of Foxpro. Find and Delete the Foxuser.dbf and Foxuser.fpt file. Restart FoxPro and it should fix itself. ...Show All

©2008 Software Development Network