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

Software Development Network >> Pam B's Q&A profile

Pam B

Member List

Kossori
lwulfers
LLee
MVerdeur
shyamyumnam
Deven Kampenhout
Dan anos
Joshua Blake
Arun R
Vidhi Yadav
Benjamin Francioni
codecamel
Stephen Patten
Barry.Kelly
ArunBandy
bob_r1970
Jamie Clayton
oha_li
Sridhar Paladugu
jeffnc
Only Title

Pam B's Q&A profile

  • Visual C++ Type Conversion from _varaiant_t to CByetArray

    hi guys. I am doing a Database application in Visual C++. i am accessing the recordset by mean of adodb::recordset pointer. I have to get the longraw data having picture stored in it and then i have to draw the image of that data. i have acees the data in recordset but unable to convert it into CByteArray or any other format. Please help me in this regad. This is not the right forum for such questions. Try the MSDN newsgroups http://msdn.microsoft.com/newsgroups/ or try the Code Project Visual C++ forum http://www.codeproject.com/script/comments/forums.asp forumid=1647 Kifayatullah wrote: hi guys. I ...Show All

  • Windows Live Developer Forums new here, 2 questions.

    Hi,everybody. I'm new here,here I got 2 questions: 1.I know the MetaWeblog API now support MSN Space,anyone who can tell me the MetaWeblog.net support . net 2.0 or not 2.Anyone who got the windows application samples for download thx.. 1.I know the MetaWeblog API now support MSN Space MSN Spaces MetaWeblog API, version 1.00 MetaWeblogAPI and MSN Spaces 2, I have the Visual C++ CMsnSpaces class which supports MSN Spaces MetaWeblog API . But I'm sorry i can't provide it for you because i programming this for my company. If you realy want to know it, you ca ...Show All

  • Windows Forms application.exe to big

    Hi all, I'am just a beginner in .net and I build an application. After adding several forms to the project, to .exe starts to grow Question 1: What is the best solution to split up the program (dll's  ) or are there other possiblities to do that. Question 2: I'am looking for an article how explains how to create and handle a dll Thanks AXH ...Show All

  • SQL Server Script SP with permission automatically

    Hi, In enterprise manager, there is a option to automatically script any trigger, permission on a table or store procedure. It seems that this feature is gone from new the SQL management studio. Is there a way to easy script this easily just like before thanks, Bernie Hi there, Well, you can script triggers by going to the specific table in the Object Explorer and expanding the node for that table....There should be a sub-node for triggers which you can expand to see the triggers defined on the table. Right click on the desired trigger and select "Script Trigger As" from the context menu that appea ...Show All

  • SQL Server SqlServer2005 can support merge replication with SqlCe2.0??

    Hi guys, Correct me if I'm wrong. That's wat I was doing.. Try to perform a merge replication between the 2. But the following errors are wat I've got during the syncronization: Error Code: 80004005 Message : Run Minor Err.: 28557 Source : Microsoft SQL Server 2000 Windows CE Edition Err. Par. : ssce:database;password=mypassword;data source=Program Files\helloWorld\database.sdf; Error Code: 80040E14 Message : The OLE DB Execute method failed. The SQL statement is not valid. [,,,SQL statement,,] Minor Err.: 28560 Source : Microsoft SQL Server 2000 Windows CE Edition Error Code: 80040E14 Message : There was an error parsing the query. [Toke ...Show All

  • Windows Forms Can't hide first column in DataGridView

    I am unable to hide the first column in a DataGridView. I am not referring to the header column but a databound ID column in the grid. As a general rule I put the ID column at the front and hide it so I can always reference the ID column in column [0]. For some reason I am able to hide any other column by setting the visible property to false except for the first column. It depends upon the code and when you databind and when you set the column's visible to false. Can you post a simple project that demonstrates the problem   -mark DataGridView Program Manager Microsoft This post is ...Show All

  • SQL Server Top 5 sales EACH month

    I have a table tblSales ( DollarAmount,DateSold, Barcode --- ) in SQL MSDE 2000. What I want is the Top 5 sales for EACH month: Month TotalSales Barcode 2006-05 Top01 Barcode01 2006-05 Top02 Barcode02 2006-05 Top03 Barcode03 2006-05 Top04 Barcode04 2006-05 Top05 Barcode05 2006-04 Top11 Barcode11 2006-04 Top12 Barcode12 2006-04 Top13 Barcode13 2006-04 Top14 Barcode14 2006-04 Top15 Barcode15 2006-03 Top21 Barcode21 2006-03 Top22 Barcode22 ---- --- ---- --- ---- --- TopNN is SUM ( DollarAmount ). I created a table AAAA and use a ...Show All

  • Visual C++ How to Create a .dll to be used in other Projects

    Hello Everyone, I created a project Under Win 32 and even tried MFC dll to use in other code....I have a C# code, when I try to add that .dll as a refrence that its not a valid assembly nor COM....How can I create a dlll to use under my C# project... Thanks, Harsimrat Take a look at http://msdn2.microsoft.com/en-us/library/sd10k43k.aspx for interoperation and mixing native to managed code. One way, is to wrap your C++ code in managed wrappers and use the resulting managed binary in your C# application. Also, take a look at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=73716&SiteI ...Show All

  • Smart Device Development Upgrading Soution to '05, probs with Data.SqlServerCE namespace

    Hi all, does the SQLServerCE namespace exist in the System.Data Namespace in .NET 2.0 Or has it been moved The reason I am asking is because I am now getting error messages relating to this in VS 2005 Thanks Tryst System.Data.SqlServerCe namespace is located in System.Data.SqlServerCe.dll, please make sure to add a reference to it. ...Show All

  • Windows Forms Making a spreadsheet. How?

    I am trying to learn C# and shall do an Excel-like program where I can copy cells etc. Should I use the Data Grid class or ListView class Or better still, is there any free data grid classes that suits this purpose Anyone one has any hints I am mostly going to moving around cells and such. Not really doing a spreadsheet. I was thinking about using: http://www.codeproject.com/cs/miscctrl/csharpgridcontrol.asp Would that suit my purpose, you think ...Show All

  • Visual Studio Express Editions Q : Exceptions

    hi, i want to ask about try and catch should it be used just for exceptions or i can use it like "if" for example i have a treeview and i want to know if the node has a parent or not so i don't know anymethod to indecate that so i used try and catch like this, Try mylastfolder = mylastfolder.Parent Catch mylastfolder = Nothing End Try or should i use catch nullreferenceexception and endurse it with throw; i saw your post in the other thread about exceptions along with this link http://msdn2.microsoft.com/en-us/library/ms182137(VS.80).aspx second ex ...Show All

  • Visual C++ Windows XP Password character.

    Hi, Dont know if this is the correct forum, but since I didnt get any answers elsewhere, I'm posting it here as well The Problem: On some machines, my password field displays the password character as the "dot" - which is XP standard, and on other machines it dispays small square boxes. Details: We have written a win32 application in C++ with, in which we have a password field.  Inorder to use the XP style of "bulleted" password chars (instead of '****') in the password field, we have added a manifest and are using the commctl32.dll version 6.  As a result the passwords _ARE_ seen as "bullets", but as mentioned above, it is not s ...Show All

  • .NET Development How to resume broken download in C# Application

    How to resume HTTP broken download in C# Application with HttpWebRequest or WebRequest Thankyou. I beleive you have a couple options: 1. The simplest is to do full retry of the download on failure.  Probably not the best choice for large downloads :) 2. Determine the number of bytes already received prior to the download stopping.  Then, in a second request, do a byte range request to download the rest of the file.  To get the final result, concatenate the bytes received from the first and second request. To see how to craft  a range request, see the AddRan ...Show All

  • Visual Studio Express Editions SQL help

    I copied my sql query from access and it looks like this "SELECT CalSTD.[Lab.ID] FROM CalSTD WHERE (((CalSTD.Element)="Al") AND ((CalSTD.[Nominal Conc])="1000"));" My problem is, I can't get this into a string that OleDbDataAdapter likes. I tested this in access so I know there is data returned. My error message is "No value given for one or more required parameters". My string = "select LabID from CalSTD where((Element = Al) and (Normial Conc = 1000))" ; Hi, Modify it to this: My string = "select LabID from CalSTD where Element = 'Al' and [Normial Conc] = 1000" ; cheers, Paul June A. Domag ...Show All

  • Visual C++ failed to start because the application configuration is incorrect

    Hello! I am wondering if it is possible to configure visual studio 2005 to not require a bunch of external dll files to run the exe. Also is there any way to figure out exactly what the external files it needs are When i try to run an exe on a computer that does not have visual studio 2005 on it, i get the message: "failed to start because the application configuration is incorrect". I have succeded to solve this on some computers by putting a bunch of dll files in the same folders, but it doesn't seem to work on all. Hello, I have the same problem. Firstable when I build (for the first time) my project, ...Show All

©2008 Software Development Network