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

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

Codecredible

Member List

Anthony Rizzo
Digitalboy
DoerakNL
Scott Currie MSFT
Omer TR
MartinBrill
Deleter
CSharpner
Ravs Kaur _ MS
DeliDaba
Amit Bhargava
Comedian2005
Klaus Wiesel
Ankini
FreddyFresh
Harlow Burgess
brickerman
Adam Cirillo
kob_kob
jorisp
Only Title

Codecredible's Q&A profile

  • Smart Device Development Porting unmanaged c++ dll from VS Net 2003 to VS Net 2005 beta 2 Windows Mobile

    Hi, we are currently face with a big problem.. We have an application made in c# than run on windows xp an 2k using .net framework 1.1. The solution is almost all in c# except 1 project that is in unmanaged c++. Everything is working fine under Vs Net 2003. We're trying to port this application to Windows Mobile 2003 and/or Windows Mobile 5 but we have some problem with the c++ project. Theres some include files that cant be found witch are : #include < fcntl.h> #include < sys/types.h> #include < errno.h> i've grabbed thos files from visual studio 2005 vc include folder as they are not in the pocket pc sdk include ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. building game as a project for college

    hello sir,    i want to know about the roadmap that i should follow while developing the game.i've learnt about the DXgeometric pipeline and light's & materials & also about the meshes.now i don't know how to create scenes for my game and how to perform animation in it.    game description:         a mission game ,with city ,in which the objective of the player will be to destroy the four main head quarters(buildings) of some organization using car. could u plz help me out.    if you need a 3D modeling program do a search for gmax you can create aircraft ...Show All

  • Visual Studio Express Editions Putting a string variable into a "pre"set text

    Hello, Is there a way that the use would input a word such as Microsoft and that input "Microsoft" would show up as like this: http://www.google.com/search hl=en&q= Microsoft onto a text box more examples: Macromedia: http://www.google.com/search hl=en&q=Macromedia Sony http://www.google.com/search hl=en&q=Sony Dell http://www.google.com/search hl=en&q=Dell define: Serene http://www.google.com/search hl=en&lr=&q=define%3A+serene Thanks A Lot! Please help me! Thank you! Keehun Nam Hi, Try the Process class: Process.Start(" http://www.google.com/search hl=en&q=" + TextBox1.Text) BTW, the process class coul ...Show All

  • Visual Studio Team System Single Machine setup with DC on same machine

    I've been having so many issues with this setup that it's just not funny (Single machine for TFS & DB with the DC on the same machine). I followed the latest setup instructions to the letter to only later find out that they assume that you have the DC on a separate machine. I was constantly getting errors when trying to create projects - "Insufficient permissions on the Windows SharePoint Services at XXXXXXX to create a new site." - I ended up just giving the TFSSERVICE user Administrator access (even thought the install instructions say to give just user access) which got rid of that error message. Now I am getting the "Ex ...Show All

  • Visual C++ Dockable toolbars on Dialog

    I need to make a dockable toolbar on a dialog. It should behave as the toolbars behave normally in SDI or MDI apps. Can you please help me out of this Maybe this helps: Putting a Docking Toolbar in a Dialog App http://www.codeguru.com/Cpp/controls/toolbar/miscellaneous/article.php/c5483/ ...Show All

  • .NET Development Discrepancy between how Uri class parses URL and the way Internet Explroer does it?

    Here's a Google Desktop URL: " http://127.0.0.1:4664/&s=8lD6KsMwZ1Zd3ZWWqfZb327gN6g&q =". Internet Explorer properly treats everything after the last '/' as a query string (even though starting query string with '&' instead of ' ' is odd). To prove this is the case just look at the page sorce and see google desktop logo <img> has relative src=hp_logo.gif, which corresponds to http://127.0.0.1:4664/hp_logo.gif URL (check image properies in the browser). Now load the same http://127.0.0.1:4664/&s=8lD6KsMwZ1Zd3ZWWqfZb327gN6g&q = URL into the .NET Framework 1.1 URI class. Observe Query property = "" ...Show All

  • Visual C++ How to create a .doc file ?

    Hi, I use VS2005 ( VC++ ), How can I create an empty .doc file or open a .doc file and append a few lines of plain text or a hyper link, etc, to the file and the document created, processed by this method will be compatible to which version of MS Word or WordPad Thanks. You should use the richedit control. It has all you need for document managing,creating and opening. ...Show All

  • Windows Forms Share BindingSource between two forms

    Hi, i have two forms and im having problems sharing the binding source between the two. I am using custom business objects, and in the designer set form one's binding source's data source to my business object type in the data sources window. The designer then places the code in the form: m_BindingSource.DataSource = typeof(MyObject); I then can setup my DataGridView.DataSource = m_BindingSource; In my constructor i would then set the m_BindingSource.Datasource = new BindingList<MyObject>(); Everything all works well. Then i would make a second form, and create a second binding source as before so i can select which fiel ...Show All

  • Visual Studio Express Editions Creating A toolwindow.

    Hey there, I have created a map editor for a platform game in C# Express, and have all my various tools and palettes on forms with the Toolwindow border. My problem is as the different windows are used, the form focus follows them around. Could anybody point me in the right direction for creating an environment like photoshop 7, where all the toolwindows have focus if the main window does. Would be much appreciated Thanks, Scott Llewelyn I'm not totally sure how Photoshop 7 handles focus, but will offer two shots in the dark. First, check out Form.Owner ( http://msdn2.microsoft.com/en-us ...Show All

  • SQL Server Create stored procedure wizard in 2005?

    Where is the create stored procedure wizard in SMS 2005 that we had in 2000 ! The templates are nice, but they show syntax only.  The 2000 wizard created insert update and delete stored procedures based on the table structure.  Regards Richard   We dont need only templates. Look another Thread about this here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=2392193&SiteID=1&mode=1 ...Show All

  • Visual Studio Team System Disabling Code Analysis Warnings

    Hi, How can i disable code analysis warnings in some blocks of code #pragma warning disable is the solution I try this but didn't work. Any sugestion Thanks. If you are talking about C/C++ code, yes, you can disable code analysis warnings as other compiler warnings, e.g.: #pragma warning(push) #pragma warning(disable:6011) code #pragma warning(pop) Let me know if it doesn't work Thanks. ...Show All

  • Visual Studio I can set a file path to a text object to hyperlink that file????

    Hello Keith , I'm working with crystal report of VS.net Beta 2 2005 When I design a report which include some hyperlink(text object or box object) to some file by absolute path so run this report at other computer it can't find some file which the report linked. Now I'm trying to transfer a parameter to this link and to follow user can set a file path when runtime. Can you help me I take forward your relay as soon as possible, Thanks for your supports, Starfo Hello Starfo, Setting the hyperlink directly at runtime is not possible, but you should be able to do this by using a formula field and then the conditional setting for the h ...Show All

  • .NET Development TableAdapter insert/update/delete order

    I have a typed-dataset with a dozen or so tables which are hooked together with typical on-to-many and many-to-many relationships. I'm using table adapters to do the CRUD actions. For updates I was using: //Update parent tableadapter_parent.Update(dataset.parenttable); //Update child tableadapter_child.Update(dataset.childtable); But I am getting foreign key reference errors when deleting records because the adapter is trying to delete a row from a parent table but it can't because there is a FK refrence to it in a child table.  But if I reverse the order of the table adapter update calls so child tables are updated before p ...Show All

  • Visual Studio Team System WinFx and Application Designer

    I have just installed the WinFx Feburuary CTP I would like to add a Winfx Application to my application Diagram. Can I do this If so how Thanks, Erik Hi Erik, Unfortunately we don't support WinFx applications on the current version of the Application Designer. We will be adding support in a future release however. Ian Bavey Software Development Engineer Visual Studio Team Edition for Software Architects ...Show All

  • Visual C++ Animation control stops ...!!

    Animation control hangs when calling other function.here is the code i use: Code: SendMessage(WM_COMMAND,IDC_ANIBUTTON); // this is a button function which i need to call it here is the actual animation takes place. in the next line i call anoter function Code: OnBackup() ; if i call OnBackup() function the animation control stops playing .. but if i comment this OnBackup funciton then the animation works fine What could be the reason Is there any other way to call the Animation function Thanks, Jay maybe when you call the onbackup(); function smth interferes with the excecution of the animation protocol maybe y ...Show All

©2008 Software Development Network