Search:

Type: Posts; User: FastEddie

Page 1 of 7 1 2 3 4

Search: Search took 0.09 seconds.

  1. Re: Tutorial: An Introduction to the ADO.NET Entity Framework

    Does anybody have this in a printable version? I tried to print it out but I couldn't get the code sections to wrap.
  2. Replies
    10
    Views
    2,087

    Re: Visual Studio 2005 and WM 6.1

    Well I got it. I tried reinstalling the SDK refresh and it said there was a prereq missing. I uninstalled and reinstalled it and then reinstalled the Mobile 6 SDK refresh and the 6.0 project type is...
  3. Replies
    10
    Views
    2,087

    Re: Visual Studio 2005 and WM 6.1

    There are only two listed Pocket PC 2003 and Windows CE 5.
  4. Replies
    10
    Views
    2,087

    Re: Visual Studio 2005 and WM 6.1

    The SDK is installed along with the images (Windows Mobile 6 SDK). And I can run the emulators for 6.x.

    What is the 'Change Platform'? I don't see anything that mentions platform.
  5. Replies
    10
    Views
    2,087

    Re: Visual Studio 2005 and WM 6.1

    I am not seeing the Mobile 6 project templates in VS (image below).

    http://www.liberty1st.org/images/vs_emu.jpg
  6. Replies
    10
    Views
    2,087

    (Resolved) Visual Studio 2005 and WM 6.1

    I am having trouble getting the 6.1 Emulator to show up in the Smart Device Project types in VS 2005. I have the emulator loaded and can run it independently but I cannot connect from VS.

    Is there...
  7. VS 2008 Re: Check if form is loaded before starting another instance

    jmcilhinney that is perfect. Thank you.
  8. VS 2008 Re: Check if form is loaded before starting another instance

    I was having a little trouble with the Singleton pattern but I was able to get the sample by Keystone Paul to do what I need. My only "issue" with that function is that I would like to make it...
  9. VS 2008 (Resolved) Check if form is loaded before starting another instance

    I have a Parent form that loads a child form and I only want to allow one instance of the child form. I have this on the button to open the form. Stepping through the code with the debugger it...
  10. Re: Source Control: VisualSVN, TortoiseSVN, AnkhSVN question

    Here is the tutorial that I used to setup my source control Source Control for Visual Studio 2008: VisualSVN Server, TortoiseSVN, & AnkhSVN. I have never used the others so I cannot offer a...
  11. Re: Source Control: VisualSVN, TortoiseSVN, AnkhSVN question

    Small shop and code is only part of what we do so we can't really justify the cost of it right now.
  12. Replies
    23
    Views
    1,062

    Re: Coolest picture I've seen in a long time

    No. I am sure of it. The rock is fake!
  13. Source Control: VisualSVN, TortoiseSVN, AnkhSVN question

    I have just started working with another developer on a team. Prior to working together we both built small in house applications individually. So anyway one of the first things we had to do as a...
  14. Re: Outlook Attachment: Object variable or With block variable not set.

    It makes sense now that you point it out. Thanks!
  15. Outlook Attachment: Object variable or With block variable not set.

    I am trying to use this block of code to save attachemnts from Outlook into a folder on my harddrive.

    Imports Microsoft.Office.Interop
    ''' <summary>
    ''' Saves Outlook attachment to the
    '''...
  16. Replies
    4
    Views
    3,671

    VS 2008 Alternative to PDFBox - .NET Version

    I am trying to read a PDF file line by line using PDFBox.

    This is the first time I have ever attempted to do this with a PDF so I am not sure what I was expecting but I thought I would end up...
  17. Replies
    7
    Views
    2,574

    VS 2008 Re: Using SMTPClient with GMail

    This is a cut and paste from a code block that I use to send email through GMail.

    Dim emailClient As New SmtpClient(strMailServer)
    emailClient.Credentials = (SMTP_Cred)
    ...
  18. VS 2008 Re: (Resolved) Conversion from type 'DBNull' to type 'String' is not valid

    I am basicaly automating the import of data between one system that only understands csv data, which leaves blanks between the commas, into another that uses SQL Server as the datestore.

    The...
  19. VS 2008 Re: Conversion from type 'DBNull' to type 'String' is not valid

    Reversing the logic did the trick. Thanks for hanging in there with me for so long!
  20. VS 2008 Re: Conversion from type 'DBNull' to type 'String' is not valid

    KP doing it that way allowed the code to run all the way until it bumped into the parameter for the stored procedure. I then got this error:

    SqlDateTime overflow. Must be between 1/1/1753...
  21. VS 2008 Re: Conversion from type 'DBNull' to type 'String' is not valid

    I am not sure how to prove it but it appears that the error happens before the IIF takes place so it doesn't fix my problem.

    I have stepped trough the code with the debugger sending the output...
  22. VS 2008 Re: Conversion from type 'DBNull' to type 'String' is not valid

    Dim F As Date = IIf(row(5) = DBNull.Value, Nothing, CDate(row(5))) gives me this error.

    Operator '=' is not defined for types 'Object' and 'System.DBNull'.
  23. VS 2008 Re: Conversion from type 'DBNull' to type 'String' is not valid

    I just want to be able to handle the null value so that I can do something with it. Anything before the error is thrown.
  24. VS 2008 (Resolved) Conversion from type 'DBNull' to type 'String' is not valid

    I am importing an Excel spreadsheet, turning it into a dataset and inserting the results into SQL Server (only 100 rows).

    I am having an issue with one of the date columns in Excel, which can...
  25. Replies
    4
    Views
    14,039

    Re: A Simple Moving Average Algorithm

    I tried converting the whole thing (with the bells and whistles) that is farther down the page with a "web based" converter and it didn't convert correctly for me. I did get the same section that you...
  26. Replies
    4
    Views
    14,039

    A Simple Moving Average Algorithm

    I am looking for a way to find the moving average for customers over a 30 day period. I am new to the concept of moving averages so I started with a Google search and found a lot of good information....
  27. Replies
    2
    Views
    3,157

    Push Dataset into SQL Server

    I have a Class that is creating a large dataset (over 32,000 records) on the fly. I want to take the dataset and import it directly into SQL Server 2005 but I have not been able to find anything in...
  28. Replies
    4
    Views
    1,390

    Re: ASP.Net Control to create points on a map

    Thanks mendhak. I started out with HTML image maps but out of the box they don't really provide me a way to show the "push pin" on top of the image (or an type of marker). I did find some hacks to...
  29. Replies
    4
    Views
    1,390

    ASP.Net Control to create points on a map

    I am trying to create an application where I can plot points on an image. The images are all overhead shots of city blocks (They are custom images and not Google maps). I am trying to make it so that...
  30. Replies
    4
    Views
    838

    Re: Clearing temp directory question

    Oh I always thought Windows did periodic clean up in the temp directory. Now I am not sure how I am going to remove the files after use. My problem is that the user can keep open the file long after...
  31. Replies
    4
    Views
    838

    Clearing temp directory question

    I am creating what could amount to quite a few temp files on a terminal server using the System.IO.Path.GetTempPath. My question is this. Can I trust Windows to clear that directory on a regular...
  32. Replies
    6
    Views
    4,548

    Re: Using Connection String from App.Config

    Thanks I'll keep working on it.
  33. Replies
    6
    Views
    4,548

    Re: Using Connection String from App.Config

    I am really lost. I did add the Connection String in the Project Settings and I also followed your link about encrypting the string but I still unsure of how to use the connection string in my block...
  34. Replies
    6
    Views
    4,548

    Using Connection String from App.Config

    For the very first time I am using a SQL file that is not actualy from the server. I am using a local sql datbase. I have added the connection string to my app.config file but now I am not sure how...
  35. Re: Open Word Document File from link on Datagridview

    A ha! DataNavigateUrlFormatString="/documents/{0}" />
  36. Re: Open Word Document File from link on Datagridview

    I am close now

    <asp:HyperLinkField
    HeaderText="Action"
    DataTextField="DocID"
    DataNavigateUrlFields="DocumentName"
    DataNavigateUrlFormatString="{0}" />
    ...
  37. Re: Open Word Document File from link on Datagridview

    Ok I finally got past the error and the page opens now with this.

    <asp:HyperLinkField
    DataTextField="FilePath"
    DataNavigateUrlFields="DocID"
    ...
  38. Re: Open Word Document File from link on Datagridview

    Well I never make it to the link. The designer fails with this error Error Creating Control - dgvDocumentsDatabinding expressions are only supported on objects that have a DataBinding event....
  39. Open Word Document File from link on Datagridview

    I have a database that hold some files, which can be Word, Excel or PDF files. I use a Datagridview to show these files and now I want to put a link on my gridview so that when the user clicks on the...
  40. Replies
    4
    Views
    516

    Re: Add roles to my authentication scheme

    mendhak thanks for the reply. The part I am confused about is how to make the application aware that the myRole = CStr(dr("UserRole")) is relevent to whether the user can browse the folder or not.
    ...
Results 1 to 40 of 260
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width