Jump to content
Xtreme .Net Talk

Gazzo

Members
  • Posts

    25
  • Joined

  • Last visited

Personal Information

  • Visual Studio .NET Version
    2002 and 2003
  • .NET Preferred Language
    C#

Gazzo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Okay, well that's totally lost me now. I think I'll give up on this one. Thanks for your help Merrion.
  2. Off the top of my head I can't remember the exact steps but you could load it into an XmlDataDocument and navigate to the DVDList (DocumentElement) and use the CreateElement and AppendChild methods. Good Luck
  3. Hi Rob, How about setting the autoincrement property on your CdKey DataColumn, would that do what you require?
  4. Problem solved. I removed Visual Studio .NET and then reinstalled it. Obviously, it has to be installed after Commerce Server in order for it to be aware that it is there.
  5. Yeah, thats what I need to do, have you any idea which API I can use to do this?
  6. Hi can anybody help please? How can I change the printer settings i.e. change the printing preferences to print on both sides. I want to do this so when I go into the Printers and Faxes window I can see the changes that I have made. I can successfully loop through my printers on my system and change the Duplex property to Duplex.Vertical but this change is not persisted. Any idea? Cheers, Gazzo
  7. Hi, A shot in the dark here, can anybody help please. Using Visual Studio.NET 2003, I have created an ASP.NET commerce project using the commerce project wizard. However I don't have the Commerce Server Project menu item under the Project menu. Does anybody have any idea why this is the case? Cheers, Gazzo
  8. Gazzo

    Visio 2002

    Hi all, does anybody know how to add the C# data types package to the Model Explorer window in Visio 2002. Like the samples have for the UML software diagrams? Cheers, Gazzo
  9. Hi all, this is a bit of a shot in the dark but here's my problem. I am trying to log on to a simple Mapi session. If I put this process on a separate thread it works fine if I am debugging it from the IDE but if I am running it from the exe it will not log on the first time round yet every other attempt after that works okay. If I dont put this in a new thread it works fine. It seems that the new thread is the problem but I can't understand why it would work fine running from the IDE but then not when compiled. If anyone has had any similar problems can you give me some advice please? Cheers, Gazzo
  10. Hi all, A while ago I created a simple line graph in notepad using GDI+ which was used in a web page. This wasn't to hard, but now I am interested in how I would create a 3D bar chart. After looking around for info on 3D drawing, I have kind of came to the conclusion that I will need to use d3d. Is this correct, or is there a way to do it only with GDI+. Can anybody shed some light, also, if anybody knows of any sources of info, i.e. web sites or books, could you let me know. Cheers, Gazzo
  11. no probs, You're welcome.
  12. Just checked, there is a column type of MONEY.
  13. Not to sure what you're asking on that one. I would put the COST column to be type MONEY (if you have that type I am getting mixed up here with SQL, Oracle and Access :-) Gazzo
  14. What I would do would be first - create an additional column in your table to store your new values (just incase things go a little wrong) and then you can update it with an update statement and some SQL string functions, then delete your original one and rename you new one. I can't remember exactly which function you would need, and as I don't have SQL on my machine at home I cannot have a look, but at a guess you could say something like: UPDATE tbl1 SET newColumn = REPLACE(oldColumn, '%', '') I'm not sure about the syntax of the REPLACE function, you'll have to look that one up. You could stick a WHERE clause on at the end in order to update only one record, until you're confident that it will work. Gazzo.
  15. Hi, if the columns are only holding numeric values then change them from VARCHAR to the correct column type, (int or whatever) then you could use the following statement: sql2 = "SELECT * FROM MARKUP4 WHERE COL6MK BETWEEN " & TextBox1.Text & " AND " & TextBox3.Text & " ORDER BY NUMBER" This should work ok, Gazzo
×
×
  • Create New...