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

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

GroZZleR

Member List

btimur
jonathan_ball
Hammo
Alex-MyRpg
vanu
AlexBB
Hosam Kamel
Drazen Panic
Bernhard Wolkerstorfer
Jason Croft
jphoekstra
Christopher Lusardi
arkiboys
malc_s
sorcer1
Xiame
dinh xuan dung
DrHerbie
md4111
enric vives
Only Title

GroZZleR's Q&A profile

  • Visual Studio Express Editions Color Picker i think

    hi anybody know how can i create one thing similar like a control in microsoft word, power point, etc. To change text or background color. Thanks try the ColorDialog class: http://msdn2.microsoft.com/en-us/library/ms286252.aspx ...Show All

  • Windows Forms return type

    hi all, we all write the functions with return type as int,double but why we need return type as another class name e.g public class abc() { some code here } public abc functionname() { } why we want return type as name of the class also why we need the return type of function as an object any help......... Hi, Suppose you have a class that searches a database and returns the details for a specific customer based on its ID. How would you return this info This is an example of were it is easier to return an object in case of returning double/int/... Greetz, Geert Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All

  • Visual Studio problem of using VS.net 2005

    I just installed Visual Studio .net 2005 But it's failed to create any project because of the error 'the target property is reserved and cannot be modified'. Is anyone here ever known this error and have any solution Thanks ...Show All

  • Visual Studio Express Editions Project creation issues

    Hi, I recent ly downloaded Vusal C++ Express. I have gone through the tutorials but I am really struggling with some simple user issues. When I start a new poject I have been following the steps..1. File, New, then click Project. 2. In the Project Types area, click Win32, then Win32 Console Application. 3. Type in a name for the project (accepting default name and location for the solution). 4. Click Next. 5. Select the Precompiled Header and click Finish. When doing this I get the following error message "Object does not support this property or method". I have also tried to build a project with selecting Empy Project and not precomiled error. I have put in my source code and have built my project. My build fails for the follo ...Show All

  • .NET Development Copying rows from one datatable to another

    Hi I have a form which shows the order lines added to an order. These are displayed in a flexgrid. There is a button called 'Add Product' which shows a Product form with all the products in the database listed in a list box. The user can choose as many products as he likes and on pressing OK they should all be added to the flexgrid in the order form as they are now order lines. Ive got a problem with the 'Row Already belongs to another table' error. It occurs when I try to add a new OrderDetail datarow to my orderdetails table. The thing is ive read various sites and they all say this error occurs when you try to copy stuff from one table to another, but Im trying to copy rows from the Product datatable to the OrderDetails datatab ...Show All

  • SQL Server moving data in ssis from sql server 2000 to 2005 on same server

    hi, does anyone know how I can make a connection to a 2000 db thru ssis LISA86 wrote: what if they have the same db name. do I need to rename one Wait a minute... How can you have SQL Server 2000 and 2005 running on the same server and expect to connect to them on port 1433 ...Show All

  • SQL Server SQL Agent failu "Unable to retrieve steps for job"

    All my Agent jobs suddenly started failing with the error "[000] Unable to retrieve steps for job xxx". There are no other errors in the SQL or Windows logs. I can view the steps in each job using SSMS, even when logged in as the account Agent runs under. The jobs fail whether running as scheduled or if I start the job manually, but the procedures in the jobs still run without errors. The last job ran 2AM Wednesday morning, the next job at 4AM and all subsequent jobs have failed. I have no idea what may have changed on the server especially at that time of the morning. Any ideas I had the same problem spontaneously arise over this past weekend. I restarted the SQL Server service and it ...Show All

  • Visual Studio Express Editions programing help

    I am taking a online c++ programing class. Since its online i have no real instructer to help me understand the course. Our finals are due friday and one of the programing problems on it has got me stuck. I would really appreciate it if some one on here would be willing to help me by either giving me pointers in the right direction or making the program for me its not that its hard i just dont have the materials needed to help me figure it out. heres the problem Create a program which will generate a 5x5 matrix of random generated numbers using a muti dimensional array. Your values should range from 1 to 100. You will need to display the array to the screen, then the program will display the max value for each row and th ...Show All

  • Visual C# simple question about string and the use of ""

    Hi all. I need to add this string of text to a string variable. "Select "c-name","c-telephone" from pub.customer where "c-name" like '&SomeName&'" But when doing so in code i get problmes with the ". I need the " to be a part of a string. Who can i do that Lars E Hi! You can use escape sequences (marked by a backslash - \). So, your code would be like Select \"c-name\",\"c-telephone\" and so on ... Greets ...Show All

  • Visual Studio Express Editions Classic ASP with VWD: why is JScript default language?

    Hi all, Thankfully, I can use Visual Web Developer to edit Classic ASP scripts. But there's an annoying problem I'd like a solution for!... As long as I have the "@LANGUAGE=VBSCRIPT" directive at the top of a page, it will correctly format VBScript scripts (keywords in blue, comments in green, strings in red, full intellisense for functions etc.). However, I have to use multiple Include files for each full page, which means not all page chunks can have the @LANGUAGE directive at the top. Here's the problem. Without the @LANGUAGE directive, VWD assumes the default scripting language to be JSCRIPT , and formats all script blocks accordingly. How do I change VWD's default scripting language to VBScript I first poste ...Show All

  • Visual C# Implementing Single Sign On??

    Hi.. What does single sign on refers to How to implement single sign on functionality using c# Thank you for your reply. Now i am able to understand what to do . I will post comment, after trying out. Thanks a ton ...Show All

  • Visual Basic Making all the Buttons invisibe....!!!

    hi, my question... i have a form which has lot of buttons and is there a way to make all the buttons invisible... like all together at once by some commands. or  how to access all the buttons in a form by a single command....because the buttons generate automaticaly in the forms. is there a way to do this.... thanks, sathyan   Hi, the following code will loop through all controls, put directly on your form and make all controls that are Button - invisible: For Each control As Control In Me .Controls     If TypeOf control Is Button Then         Dim myButton As Button = DirectCast (control, B ...Show All

  • Software Development for Windows Vista Travel Demo database issues

    I am having two issues with the delivered database: 1) When the database is restored the User dbo loses the 'sa' login. Then when you run the program it will always fail at line 328 in Workflow.cs sqlConn.Open(); 2) There isn't a Create statement for a table called TaskAssignment /****** Object: View dbo.TaskAssignmentInformation Script Date: 01/21/2007 12:30:05 PM ******/ CREATE VIEW dbo.TaskAssignmentInformation AS SELECT dbo.TaskAssignment.TaskTypeID, dbo.GroupActorRelationship.GroupName, dbo.GroupActorRelationship.ActorName FROM dbo.GroupActorRelationship INNER JOIN dbo.TaskAssignment ON dbo.GroupActorRelationship.ActorName = dbo.TaskAssignment.TaskOwner I'm stuck...I can get past item #2 but wh ...Show All

  • SQL Server Simple AS 2005 migration question (Time Dimensions)

    I am updating work done on cubes under AS 2000. In AS 2000 a Datetime field could be linked directly to a Time Dimension from which the levels inside that dimension could be selected. This included being able to break a date into fiscal quarters. It was not necessary to divide up the field containing the full date and time into Day, Week, Months, year columns. In AS 2005 it seems I must break the date up into Day, month, and Year then link these fields to time dimension and specifying whether they are fiscal or calendar. Is there is a way to have the same intelligence as AS 2000 where the date partitioning is done for you without breaking the field up Can someone point me in the right direction Any help appreciated ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. howtorender a model

    I think the tutorials for 3d camera rotation aren't that fair i was doing great until those tutorials. I halted completely cause all those tutorials refer to models and code that were implemented somewhere else, but they don't have referring code or directions for how to replace the models and textures or input. refer to the code needed int he tutorial correctly i have no idea where they got all the extra code from. i know there just loading the content from the pipeline but the guy doesn't tell us where we can get them model and textures from or input from. I found it all later after searching. but still haven't tracked the model or size, just the how to load your own model. ill prolly have to use my own models since they dont supply it ...Show All

©2008 Software Development Network