• Member Avatar for cgeier
    cgeier

    Replied To a Post in Get Request Body from web browser control url

    %5B, %5D, %3D are ASCII values. %5B = '[' (left square bracket) %5D = ']' (right square bracket) %3D = '=' (equals) [ASCII Table](http://www.asciitable.com/) Below is a method of extracting …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Selecting a row and using data from that row to perform calculations

    You need help or you need someone to do it for you? If you need help, post the code that you have so far.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Need help with code

    Knowing what controls are on your form would be beneficial. The easiest way is probably to change the text on the control.
  • Member Avatar for cgeier
    cgeier

    Began Watching For Loop

    Hi! The for loop works and it reads the value of `recno()`. However, the sql code itself is being executed once only. Is there any tweak I need to do …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in For Loop

    Two possibilities that I see: **Possibility 1**: recNo.Length is only allowing 1 iteration (as others have stated) Try outputing the value of k: MessageBox.Show("k: " + k); **Possibility 2:** Receiving …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Ftp Upload with Progress Help.

    Check the value "progress". Can also try adding "refresh" after "xProgressBar1.Value = e.ProgressPercentage". If you are using a StatusStrip, call StatusStrip1.Refresh().
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in writing and appending into a file

    [class FileWriter](http://docs.oracle.com/javase/7/docs/api/java/io/FileWriter.html#FileWriter(java.io.File,%20boolean)) -FileWriter(File file, boolean append) Change line #21 (above) from: FileWriter fw = new FileWriter(file.getAbsoluteFile()); To: FileWriter fw = new FileWriter(file.getAbsoluteFile(),true);
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Building Executable Problem

    You can try adding an application manifest to your project (as in UAC Troubles above). Click "Project" (in menu bar) Select "Add New Item" Select "Application Manifest File" Click "Add" …
  • Member Avatar for cgeier
    cgeier

    Began Watching Building Executable Problem

    I have been working on a project with selenium 2 webdriver for a few weeks. I got to a milestone and decided to compile my project in release mode and …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Building Executable Problem

    Here are some more that may be of interest: [Inside Windows 7 User Account Control](http://www.tjscott.net/winsecurity/win7.uac.ross.pdf) [Tools List for Understanding Windows Integrity Mechanism (WIM)](http://csi-windows.com/blog/all/27-csi-news-general/114-tools-list-for-understanding-windows-integrity-mechanism-wim) [Windows Integrity Mechanism Design](http://msdn.microsoft.com/en-us/library/bb625963.aspx) -User Interface Privilege …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Building Executable Problem

    The following posts/articles may be of interest: [UAC Troubles](http://philippsen.wordpress.com/tag/requestedexecutionlevel-manifest/) [How to force my .NET App to run as administrator on Windows 7?]( http://stackoverflow.com/questions/2818179/how-to-force-my-net-app-to-run-as-administrator-on-windows-7 ) [What Did My Manifest Do: A …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Building Executable Problem

    Are you running VS as an administrator? Try turning off UAC (under user accounts) before running your program and see if it works.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    The following process is for use once you get your Win 8 working. But it states what size USB drive you will need. So, for WinPE 5.1, you will need …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    Buy two so you can have one for Win 5.1 PE or for use as a Win 8 recovery tool.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Programmatically creating SQL database

    Open Sql Server Configuration Manager (for SQL Server 2008) and check that TCPIP is enabled. **Win 7:** * Click Start * In "Search programs and files" textbox, type: SQLServerManager10.msc * …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    You can just write it to a CD/DVD. Or I think there is one that you can download for a USB drive, but it will probably overwrite the USB drive. …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    Download and run [Memtest86+](http://www.memtest.org/): Download by looking under "Download (Pre-built & ISOs)". Under "Memtest86+ V5.01", click on "Download - Pre-Compiled Bootable ISO (.zip)" This will test your memory, and since …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    I wouldn't focus too much on the computer not booting linux. The version of linux you are using may not be supported on that computer.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    What is the model number (or name) of the laptop?
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in When i install window form application another machine database not connect

    Are you using SQL Server or SQL Server Express? If so, are you trying to connect to an instance on the new machine? If so, did you install the db …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Programmatically creating SQL database

    You can try the following connection string: public static string connectStr = @"Data Source='.\SQLExpress';Initial Catalog='DB1'; Integrated Security = True"; //public static string connectStr = string.Format("Data Source='.\\SQLExpress'; Initial Catalog=\'myDB\'; User Id=\'user1\'; …
  • Member Avatar for cgeier
    cgeier

    Began Watching Programmatically creating SQL database

    I'll prelude this with I am a novice coder at best and this is mostly a hobby that I would like to do professionally one day, but that day may …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Programmatically creating SQL database

    Download and install SQL Server Express 2008. [SQL Server Express 2008 R2 SP2](http://www.microsoft.com/en-us/download/details.aspx?id=30438) [.NET Framework Data Provider for SQL Server connection strings](http://www.connectionstrings.com/sqlconnection/) [Introducing LocalDB, an improved SQL Express](http://blogs.msdn.com/b/sqlexpress/archive/2011/07/12/introducing-localdb-a-better-sql-express.aspx) [Differences Between …
  • Member Avatar for cgeier
    cgeier

    Began Watching Error 0xc185 and/or 0xc21a

    My son was using his toshiba satelitte win 8.1 64bit computer and it crashed. Now all it does is go through the repair loop with no success. I thought maybe …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    If your computer uses UEFI firmware, I suggest checking whether it is set for "UEFI boot" or "CSM boot". It appears that "UEFI boot" is used with GPT and "CSM …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    Ensure that the processor fan is working and the vent ports are free of dust/dirt. Has this computer been overclocked? If so, reset BIOS/UEFI firmware settings to the default values. …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in VB and Instagram Login

    Have you tried using the API? [Instagram API](http://instagram.com/developer/#)
  • Member Avatar for cgeier
    cgeier

    Created old posts

    Why aren't old posts prevented from being commented on. Posts from 5+ yrs ago are being revived. I think that any post that has been inactive for 6 months or …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Error 0xc185 and/or 0xc21a

    Ensure that you have saved any data from the hard drive that is important before proceeding. Making a image of the hard drive can also be useful before attempting any …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Saving DataGrid To XML File Issues

    You haven't posted enough of your code. "File in use" errors are a result of a file being open, and trying to modify it when it has a lock on …
  • Member Avatar for cgeier
    cgeier

    Began Watching How to group data in ReportViewer?

    I'm having a hard time in grouping my data via ReportViewer. My friend told me to use List in grouping but I don't have a clue on how to do …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Set Margin of Report Viewer during runtime

    Your page margins are subject to the limitations of your printer. Check what the minimum margins are for your printer. Also ensure you've specified the correct paper size.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Using the word base as a variable problem

    C# is case-sensitive. Are you sure your teacher didn't specify you to use "Base"? You can use "Base"--capital "B". Although, I wouldn't recommend using a different case of a reserved …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Make webbrowser1 click a button on a webpage

    I have no idea what you're talking about. What are you trying to do?
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Make the WebBrowser Control give you the installed IE version rendering

    If you are using IE11, add code for IE 11. Case 11 If IgnoreIDocDirective Then value = 11001 Else value = 11000 End If
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Make webbrowser1 click a button on a webpage

    Try the following: Dim htmlElements As HtmlElementCollection htmlElements = WebBrowser1.Document.GetElementsByTagName("button") For Each element As HtmlElement In htmlElements MessageBox.Show("element name: '" & element.Name & "' InnerText: '" & element.InnerText & "'" …
  • Member Avatar for cgeier
    cgeier

    Began Watching Set Margin of Report Viewer during runtime

    Hi! I have this code from the internet but it didn't work well. I want to set the margin of the Report Viewer during runtime. Because I have this form …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Set Margin of Report Viewer during runtime

    I've never used ReportViewer, but I found this post: [set page layout for report viewer...](http://stackoverflow.com/questions/12985990/set-page-layout-for-report-viewer-in-visual-studio-2010) The following is converted and and adapted for VB .NET: Dim myPageSettings As New System.Drawing.Printing.PageSettings() …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in MBAM ate my system, can't restore

    Did you try booting into safe mode and accessing your usb device? You could also download a boot cd/dvd and burn it to cd/dvd which you may be able to …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Deploying a DLL across multiple ClickOnce applications

    Automate that process.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Determine if certain message has popped up

    In your program? Or in another program?
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in How to connect Compiled WPF application with SQL Server

    Cookies are files and can also be deleted. A user should be able to delete any file on his/her computer--in my opinion. Efforts to prevent such deletion are typically found …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in How to connect Compiled WPF application with SQL Server

    Encrypt the data before saving it.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in How to connect Compiled WPF application with SQL Server

    Use a file. Xml file would work well. Search how to read/write to an XML file. Or you can just save the connection information to a text file.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Sum values of array

    Use a pen and paper and step through your code to see what is happening--to see what the computer sees.
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Deploying a DLL across multiple ClickOnce applications

    In my testing, I built a dll that opens a message box as you stated above. Then I added a reference to the dll, added an Imports statement. And used …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in Deploying a DLL across multiple ClickOnce applications

    Is your program running as a service?
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in C# Programmatically install Microsoft Access Database engine if installed

    [Determine Microsoft Database Access Engine Version](https://community.flexerasoftware.com/showthread.php?201524-Determine-Microsoft-Database-Access-Engine-Version) [Installing AccessDatabaseEngine with Application Setup](http://techieyogi.blogspot.in/2009/11/installing-access-database-engine-with.html) [Programmatically check Access Database Engine for MS Office (2007 or 2010) installed on a client system](http://www.codeproject.com/Tips/508868/Programmatically-check-Access-Database-Engine-for) This post may …
  • Member Avatar for cgeier
    cgeier

    Replied To a Post in C# Programmatically install Microsoft Access Database engine if installed

    Add using statement: * using Microsoft.Win32; Then to find out if it is 32-bit (x86) or 64-bit: private string processorArchitectureKey = @"HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment"; private string productVersionKey = @"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion"; Then: …
  • Member Avatar for cgeier
    cgeier

    Began Watching Try | Catch question

    Hello I am using the following try | catch to locate an error: Try Using conn As OleDbConnection = New OleDbConnection(System.Configuration.ConfigurationManager.ConnectionStrings("students").ConnectionString) Dim Sql As String = "INSERT INTO university (username,[password], …

The End.