Search:
Type: Posts; User: gib65
Search :
Search took 0.01 seconds.
February 15th, 2013 09:13 AM
Turned out I was creating them in the wrong database. Problem solved.
February 13th, 2013 12:47 PM
Hello,
I'm writing some code to create stored procedures in a database. In order to test it out, I deleted a stored procedure (right clicking in
SQL Server 2008 and clicking on delete) and...
January 12th, 2013 06:03 PM
Hello,
I'm trying to publish a webapp to a server. The way we do this at my work is we publish it to a local folder on whatever computer we're working on and then upload the contents of that...
December 7th, 2012 05:41 PM
Hello,
I have a DataGrid web control on my ASPX page. It has a column (titled "Active") that set to ImageField.
30717
In my code, I'm trying to set the content the cells in this column to an...
November 7th, 2012 10:48 PM
Thanks CGKevin,
I downloaded VS 2012 Exp. Web and I'm developing in that now.
October 31st, 2012 09:45 PM
Hello,
I'm trying to bring some assemblies into my bin folder for my website. I've got some C# script on the page that references and uses the assemblies. It looks like this:
<%@ Page...
October 24th, 2012 08:29 PM
I've got a MySQL database running on my laptop and I want to connect to it via some C# scripting.
I have an aspx page that has this at the top:
<%@ Page Language="C#" %>
<%@ Import...
September 11th, 2012 09:35 AM
September 7th, 2012 10:16 AM
Thanks S_M_A, I'll look into that.
September 6th, 2012 11:49 AM
Hello,
I have a service programmed in VS that compiles as a dll. To run the service, I need to open VS and run it. Is there a way to run my dll from the command line (i.e. without having to open...
August 31st, 2012 09:55 AM
No, but we solved half the problem by doing this:
PdfExport.ImageQuality = ImageQuality.Highest;
August 29th, 2012 11:37 AM
Hello,
I have an image that I would like to make more "crisp".
The code (in C#) for producing the image looks like this:
Bitmap bitmap = new Bitmap(rectangle.Width,...
Thanks for that Nikel,
Sorry for not replying earlier but I got busy and forgot that I posted this.
In any case, the problem is solved (not by me though so I'm not sure how it was solved).
Hello,
I want to add a Panel to a UserControl but it's not showing up.
Here's my code:
Adding the UserControl (to another UserControl -- i.e. QuickStartControl):
Hello,
Please have a look at my screen capture:
29979
I'm having trouble repositioning the ButtonPanel (in blue). Any time I add a control to the ControlPanel (in green), I have to shift the...
Hello,
I'm thinking there must be a way to tell a panel to resize to exactly the size required for all its controls to be visible. So if it's too big, it shrinks to fit all the controls snugly,...
Hello,
Please have a look at the screen capture below.
29937
What I have here is a line up of textboxes and a couple combobox at the right end. They are all children of a UserControl.
...
The SMTP server name only works on a computer within the network that contains that SMTP server. That was the problem.
Thanks for your help.
Hello,
I've got an application in which I'm trying to send email and it won't let me for some reason. Here is my code:
try
{
MailMessage message =...
Hello,
I'm wondering if it's possible to get an XmlReader object to read an xml file that's inside a zip file (without extracting it from the zip file).
Here's how I was zipping the files:
ZipFile zipfile = ZipFile.Create(pathAndNameExtStripped + acmZipExtensionStr);
zipfile.BeginUpdate();
zipfile.Add(pathAndFileName);...
How can I prevent this?
Here's how I create the zip file:
ZipFile zipfile = ZipFile.Create(pathAndNameExtStripped + acmZipExtensionStr);
...
Hello,
I'm using SharpZipLib and I'm trying to understand why my files are not extracting to the target directory that I specify.
I have a zip file under C:\tmp\TestData\. I want to extract it...
Yes, that works! Thanks BigEd.
Hello,
I would like to create a Microsoft.Office.Interpol.Word.Dictionary object that's based on the English language but with additional words. How can I do that?
Here is the constructor for...
Click Here to Expand Forum to Full Width