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

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

ParrotHead

Member List

RKN_India
CyberOps
Deerhake44
briggins5
shah_hs
chicagoclone
dotnetwebdeveloper
Shadow Chaser
NickUk
RizwanSharp
bergen
VFaul
Montana Jones
Quimbo
Learning VB
dumbo
Jorge Martin
Threads! Help!
Sjas
ivanchain
Only Title

ParrotHead's Q&A profile

  • Visual C++ Smartbridge Alerts

    I too am receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Helen McLaughlin I am too receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Xavier Gonzalez ...Show All

  • Visual Studio Express Editions Need help with program

    I am writing a program that is pretty much a magic 8 ball It compiles and runs My problem is when i run it the second time the variables and outputs are all messed up and do not get reset here is the code: #include <iostream> #include <string> #include <windows.h> #include <stdlib.h> #include <time.h> #include <stdio.h> using namespace std; int compare(string question); //functions void cases(int num_coord, int answer); int main () { char again; string question; int num_coord; srand ( time(NULL) ); //random number for a different int random_num = rand ()%5; //answer for each question cout <<"Ask the magical 8 ball!!!"<<endl; Sleep(600); ...Show All

  • SQL Server Excecute SQL Script in Exrpess Edition

    How to Excecute SQL Script in Exrpess edition I wanna create a database using a lot of SQL script, but I don't know how to use it just like I used to do in the Query Analyser of SQL Server 2000. WHERE did your links go I have managed to loose / delete the SQL Server Comfiguration Manager and I can't find where to download a fresh copy to install.... Thanks, Paul ...Show All

  • SQL Server Send mail Task in Child package

    Hi everyone, In my project i need to call a child package to send email to a group of users. All the configurations for sendemail task such as to, from, subject, attachment, and body are set using global variables. I pass all those variables from parent package and this is workin fine. Now my problem is the BODY MESSAGE. I need to have the body message which looks like the one below.... Status of PCCODS database on ( PRODSQL6 ): TimeStamp on database: 10/25/2006 6:51:32 PM FACILITY OPEN/CLOSE STATUS -------------------------- -- Number of facilities open for month 10 is 80 (See attached PCCCLoseStatus excel file for details on closed facilities.) Here u need to look at Timestamp ...Show All

  • Visual C# Inherit from exception

    Hi I would like to create my own exception type. For example : InvalidNameException How do I inherits from Exception but still create my own message Something like ArgumentNullException Thanks Avi harush Thanks This is not my question. I know how to inherit from exceptions. I would like to create my own message with the parameter. Like: throw new SomeBlaBlaArgumentException("this is an exception", 15); and error.Message would print , for example, "Thanks for sending 15 as a parameter. BTW , this is an exception!" ...Show All

  • Internet Explorer Development float issue in ie 7

    has anyone noticed a problem with css floats from ie 6 to ie 7 in my office three of us have installed ie 7, for two of us, the floats look fine. on one computer, the floats get pushed underneath one another. ...Show All

  • Visual Studio 2008 (Pre-release) Another puzzle on how to access ui elements inside datatemplate.

    Recently, I am trying to use the DM-V-VM model (see dan 's blog) to develop wpf applications. In this model, I can define DataTemplate like this: <DataTemplate DataType="{x:Type local:Contact}"> ........ </DataTemplate > <DataTemplate DataType="{x:Type local:ContactVM}"> <Grid> <ListBox ItemsSource="{Binding Contacts}" ></ListBox> <Grid Name="grid"> <Button Name="button">Test</Button> </Grid> </DataTemplate > ...... <Grid> <ContentControl Content="_content"/> </Grid> In such a model, we can see the DateTemplate is applied to a DataType(C ...Show All

  • Visual Basic how to uninstall my own application

    I have a vb.net program that runs invisibly - no task bar, no icon, no VISIBLE form. It can't be shut down by the user outside of the standard windows shutdown. This part works. If the user wants to uninstall this program, they need to open up the application and enter an uninstall code that turns off the program so it can be uninstalled. A tray icon is not an option. QUESTION: If I have a program that is running invisibly, is it possible to click an icon that makes the program become visible Yes, you can make another application that when it is executed (by clicking its icon) it searches for your application and activates it (makes it visible as long as you provide a mehtod for doing so) ...Show All

  • SQL Server Can we alter system views in SQL Server 2005?

    Hi, all experts here, Thank you for your kind attention. Would please anyoneh ere give me any advices about if we can alter system views in SQL Server 2005 With best regards, If that is your intent I would suggest that you add extended properties on the table columns. Take a look at this feature at http://msdn2.microsoft.com/en-us/library/ms190243.aspx . or look it up in books online. In short, extended properties let you add a description to any object in the database such as tables, views, schemas, columns etc. e.g. To add an extended property to a column of a table you could do something like sp_addextendedproperty 'property_name','your description','schema','schema_name_of_table','table','table_name','co ...Show All

  • Visual Studio Express Editions Easily Edit Static Tables...

    Ok, I'm making a program that needs a list of links and names and I want it to be held in the program itself, and uneditable by the user. I would like it to be editable in a nicer interface. Is there a way, its using a dataset with one table but in order to add items I need to create Rows for each one. Could I set an xml as a resource and do it that way Yes, an embedded XML resource is a good way to go. Project + Add New Item, select the XML File template. In the Properties window, change Build Action to "Embedded Resource". You can use the built-in IDE XML editor to edit your data. To retrieve the XML data at run-time, use code like this: System.Reflection.Assembly asm = System.Reflection.A ...Show All

  • Smart Device Development Cannot display local XML files in emulator

    Using IE in the Pocket PC 2003 SE Emulator, I can view XML files over the Web (i.e. via a URL) but not local XML files (i.e. file:\\...) that are on the device's storage card (i.e. a folder on the host machine). Is this a limitation of the emulator, are local XML files displayed properly in actual devices, or I am doing some wrong Nothing. IE is totally blank when I attempt to view a local XML file. Same applies to the WebBrowser component in Visual Studio 2005. When I try viewing an XML file via a URL, both display it fine. ...Show All

  • SQL Server Change Dataset on existing reports

    Hi All, I have a set of reports already built. I want to use the same reports using a different dataset(different server). I have tried to add a new datasource and data set, then set the data tab of the report to reflect the new dataset. All seems fine, but when I deploy the report, it is deployed with the new dataset into the new location, but the data displayed is from the original dataset. Any pointers regards I have done what you suggested. Still not working. Odd thing is, if I go to the report properties in the RS website and look at the data sources, both data sources are listed. Let me be clear on what I am looking for here, so I dont waste anyones time. I have 2databases I want to access ...Show All

  • Visual Studio Team System Hi, about class member's access level~~~

    Hi All: I want to create a Rule, the detail is: "Programmer should explicitly declare the class member's access level." For example: A class like: namespace Microsoft.TestFiles { public class BaseTestSample { String a = ""; int tryMethodA() { return 1; } public int tryMethodB() { return 2; } } } the class member a and tryMethodA violates the rule, because they didn't explicitly declare the class member's access level, but tryMethodB, it explicitly declared the access level " public ", so it fulfils the rule. My question is: I had tied to view the IL code to find the access level, but unfortunately, when the pr ...Show All

  • .NET Development Performance counters

    Hi, I am trying to figure out how the performance counters work and I'm having some difficulties understanding some of the types. I have a very simple application that creates a counter instance and then I use perfmon.exe to see the values generated by my program. I successfully tried the AverageCount64 type, using the AverageBase. Although I continuously increment the counter I see the average in perfmon, as expected. When I try RateOfCountsPerSecond32 for instance, I increment the counter in the same way, but instead of seeing the rate per second in perfmon, I see the raw value of the counter being displayed. The curve keeps going up as long as my applications is running. Now since RateOfCountsPerSecond32 doesn't have a base typ ...Show All

  • Windows Forms Help required for DataGridView and data binding to a SQL server database

    Hi, First of all, I'm using Visual Studio 2005 Professional (C#), SQL Server 2005 Express Edition. Since yesterday, I have been looking into databinding as a complete beginner. I am currenty playing with the DataGridView which I have been able to get to connect to one of my many databases and specific tables, but I am unsure how to communicate the data from the DataGridView back to my SQL server database. The only problem is that a lot of topics covered on here are to do with the designers and they do a lot of automatic work for you. My program on the other hand works with hundreds of databases. I select them from lists that I have filled (combo boxes, pick lists etc) and the program does the majority of creating new databases wh ...Show All

©2008 Software Development Network