Jazerix 0 Junior Poster in Training

Hi there :)
I'm trying to request the info from "https://www.googleapis.com/sj/v1beta1/tracks". It should give me a full list of my google music tracks. To get the list, it requires you to do a request with an authorization. You get the auth from "https://www.google.com/accounts/ClientLogin?accountType=GOOGLE&Email=EMAIL&Passwd=Password&service=sj".

The thing is, I'm doing a webrequest and it goes through (i think), but im not exactly getting a list. I was hoping you could take a look at it :)

string uri = "https://www.googleapis.com/sj/v1beta1/tracks";
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(uri);
httpWebRequest.Headers.Add("Authorization", "GoogleLogin auth=" + AuthID);
WebResponse response = null;
try
{
     response = httpWebRequest.GetResponse();
     Stream stream = response.GetResponseStream();
}

Cheers :)

Jazerix 0 Junior Poster in Training

Hi there
I've been trying to change the process description of my program, wihtout any luck. Is it even possible to change the process description from within the code?

Cheers
-Jazerix

Jazerix 0 Junior Poster in Training

Hey there
First of all, I'm sorry if the title was a little misleading, wasn't sure how to put it :)

Anyways, I got a pivot control. This pivot controls get's some info from my server, that determines how many tabs, it should add. Each tab uses the design "PivotDesign" i created.
This is what the xaml looks like

<DataTemplate x:Key="PivotDesign">
            <Grid Height="548" Margin="0,0,2,0" >
                <Rectangle RadiusY="11" RadiusX="22" Height="79" Margin="19,12,15,0" VerticalAlignment="Top" Grid.ColumnSpan="2">
                    <Rectangle.Fill>
                        <ImageBrush Stretch="Fill" ImageSource="header_win.png" />
                    </Rectangle.Fill>
                </Rectangle>
                <TextBlock Height="30" HorizontalAlignment="Left" Margin="41,11,0,0" Name="textBlock1" Text="Items:" VerticalAlignment="Top" />
                <Rectangle Fill="#30FFFFFF" Height="432" Margin="18,0,13,12" VerticalAlignment="Bottom" RadiusY="40" RadiusX="47" Grid.ColumnSpan="2"/>
            </Grid>
        </DataTemplate>

the thing is, I want to edit the textblock before it's deployed on the control, for example the textblock would say "1" on page 1 and "2" on page 2, but I have no idea on how to change this, since the code is just loading it from the template I created :)

for (int i = 0; i < items.Count ; i++)
            {
                PivotItem pivI = new PivotItem();
                pivI.ContentTemplate = (DataTemplate)Resources["PivotDesign"];
                pivI.Header = "item " + (i + 1);
                pivI.Margin = new Thickness(12,-15,-389,1);
                pivot_Games.Items.Add(pivI);
            }

how do I go about that?

How can I edit the textblock before i have to add the PivotItem?

Kind Regards
-Jazerix

Jazerix 0 Junior Poster in Training

Meh, I'm failing to get it working. Maybe I didn't clarify myself good enough.
Anyways, here on my school we got a server accessible by all the students on the network. There is this folder "\\192.168.1.1\" that contains like 500 folders for each student, besides that, there is also like ten printers in this folder. I need my program to filter the printers in \\192.168.1.1\ so it always knows which ones are available to install.

Cheers

Jazerix 0 Junior Poster in Training

Thanks for your reply, first of all, I'm already able to get the local installed printers, it's no problem :) its the network that is hard to retrieve. I did try with the system.management class or what ever it's called, i had some trouble with VCE not being able to find it. I wont be able to test it before monday unfortunately, but once again thanks for the update ! :D

Jazerix 0 Junior Poster in Training

Hey there :)

So, I'm making a small program for my school, and I need to get the names of the printers on the network. If you go to the control panel in windows, it can list the printers on the network, but how would I do that in my program?

[IMG]http://i39.tinypic.com/1opvro.png[/IMG]

^like that

Cheers
-Jazerix

Jazerix 0 Junior Poster in Training

Have your tried opening the project file directly?

yes it gives me the error "There is no editor available for 'C:\Users\Username\Visual Studio 2010\Projects\Project\Form1.cs'. Make sure the application for the file type (.cs) is installed.

Jazerix 0 Junior Poster in Training

Hey there

So, I was working on a program and unfortunately i got a blue screen while i was working. When I got back on my computer, Visual Studio wasn't able to open my Form1.cs and Form1.Designer.cs. Opened it in notepad, and it was completely empty however the filesize is around 15 kb and 34 kb, so it shouldn't be fully empty. I guess this teached me that i need to do backup every now and then. Unfortunately this means that I'm probably going to have to recode the whole program (might be a good thing ;)), however i was wondering if there is any way to recover my file :S?

Cheers
-Niels

Jazerix 0 Junior Poster in Training

Thanks that worked! :D:D:D

Jazerix 0 Junior Poster in Training

Hey there
I'm quite new with php, i create a small site that can control some function for a program i made in C#, however I'm having some trouble with the css :P i got a header, h1 and h2. the header and h1 is functioning as they should, however h2 is not place as i wanted it to. I was wondering what do i have to do to move it to the opposite of h1. Also when i give h2 a height/width it gets places on the same side as h1, without the dimensions i cannot set the gradient background to h2, any ideas? :)

this is what my css file looks like:

<?php 
header ("Content-type: text/css");
?>
body{
 background-image: url('Sky.jpg');
}
header {
 text-align: center;
}
h1 {
 font-size: 1em;
 background-image: url('ElementBackground.jpg');
 //background-color:#86B404;
 text-align: left;
 height:290px;
 width:350px;
}
h2 {
 font-size: 1em;
 text-align: right;
 //background-image: url('h2.jpg');
 //height:290px;
 //width:350px;
}
?>

oh, and i just realized that i should have posted this under Web Design > HTML and CSS sorry about that, hopefully a mod can move this :)

Jazerix 0 Junior Poster in Training

Hey there
so i just got started with php and im actually quite amazed with it and how easy it is to understand
anyways, right now im trying to do some coding, where i want the script to check if the user exist, if the user exist it will show some info from the server if not it will print "User not found"

this is what i got so far

while ($db_field = mysql_fetch_assoc($result)) {
if (!$result) {
$err=mysql_error();
print $err;
exit();
}
if ($db_field['MemberName'] == null)
{
print "test";
}
else
{
print "[MemberName]" . $db_field['MemberName'] . "[/MemberName]<BR>";
print "[BGsWon]" . $db_field['BGsWon'] . "[/BGsWon]<BR>";
print "[ExpGotten]" . $db_field['ExpGotten'] . "[/ExpGotten]<BR>";
}
}

what do i have to do to check for it :P?

Jazerix 0 Junior Poster in Training

Hi
I just set up my IP Board.

Now i want to retrieve some of the data via mysql, so far I have no problem getting a table into a datagridview, but what do i do to get a value from a table

right now i got SELECT * FROM members WHERE name = \"jazerix\"
how do i get the value it should return? :)

cheers
Jazerix

Jazerix 0 Junior Poster in Training

Just installed "Microsoft Visual Web Developer 2010 Express", and it works perfectly fine there, so what am i doing wrong :S?

Jazerix 0 Junior Poster in Training

you should have a web.config in the root directory of the website you're making. This is a separate file from your webforms.

That is exactly what there is :(
http://i54.tinypic.com/140f7md.png

Jazerix 0 Junior Poster in Training

Hey there

I'm currently going through a guide made by wrox, getting started with a asp.net
Anyways, ive stumbled across a problem :(
In the tutorial it tell me to access "Profile.Preferences.Theme" however in my Webform, there is no such option

This is my current "Web.config" file

<configuration>
    <system.web>
        <compilation debug="false" targetFramework="4.0" />
      <profile>
        <properties>
          <group name="Preferences">
            <add name="Theme"/>
            <add name="Currency"/>
          </group>
        </properties>
      </profile>
    </system.web>

</configuration>

and this is how my webform looks:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Server Object</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <h1>Profile Object</h1>
    Your Profile Object:
        <asp:Literal ID="LiteralTheme" runat="server"></asp:Literal>
    </div>
    </form>
</body>
</html>

What am i doing wrong :(?

Kind Regards
-Jazerix

Jazerix 0 Junior Poster in Training

You should install IIS, if you can, and create some regular HTML pages so you can see how the server responds to certain types of files (with special names and types).

Are you very familiar with HTML?

Somewhat, anyways, thanks ill get started :)

Jazerix 0 Junior Poster in Training

Only a little not much :/

Jazerix 0 Junior Poster in Training

I would just start by making an ASP.NET project.
When you run it, the local testing server will invoke and you can play around with it.
If you already know IIS, you can change the deployment parameters to write the output on the web server.

...then get a book

I dont know IIS :P

So, i should start with ASP.NET Web Application or MVC? A lot of choices :)

Jazerix 0 Junior Poster in Training

Hey there

So, I've been coding C# Windows Forms Applications for quite some time now, and i want to get started with asp.net, however i dont know where to start :(, on microsoft site, there are MVC, Web Pages, Web Forms, and to be honest i just want to get started with a normal site, if that makes sense, where should i start?

Cheers
Jazerix

Jazerix 0 Junior Poster in Training

Thanks a lot! I will have to look into it in the morning, as it getting late here in denmark, how ever thanks! :D

Jazerix 0 Junior Poster in Training

i found a way to get the line number, however, is there a way to do the "catch" of the whole program and not just every event?

Jazerix 0 Junior Poster in Training

Sounds like i should try it out :), however, how can i get it to tell me what line it bugged at?

Jazerix 0 Junior Poster in Training

Hey :)

Uhm, I just finished a program today, and I was wondering, how i should retrieve the errors that the user may encounter :S Ive seen the logo { sa } somewhere, what does it stand for? Or what should i do about this :)
Cheers
-Jazerix

Jazerix 0 Junior Poster in Training

If you create a new form and you don't assign its owner property I guess nothing much will happen.

ohhh, that was stupid :|
Thanks man

Jazerix 0 Junior Poster in Training

If you want to download image which is accessed thru webbrowser. There is some easiest way to do it. If you view any image in webbrower control, it will cached locally your machine. You just need to find the correct path, make a clone and finally save it in your required folder.

There is some method called FindUrlCacheEntries to retrieve local temp image path. But i don't know which dll :)

Thank you! Ill look into it right away :D!

Jazerix 0 Junior Poster in Training

Hey :D

So I got two forms, form1 and form2

when i click on a button on form1, it will show form2 and hide form1
once, on form2 i got a button "cancel", when i click on that button i need to close it and unhide form1 and not open a new instance


this is what i got on form2:

this.Owner.Show();
this.Close();

and i dont know how to get it working :D

Jazerix 0 Junior Poster in Training

what error does it return? It works fine for me

Jazerix 0 Junior Poster in Training

So, I'm trying to get an image from the webbrowser in C#
and for some reasons every second / third time it does it, it return a blank picture with the right canvas, instead of just getting the image, and I cant just download it, unfortunately thats not possible, so thats why im doing it this way :)

Bitmap bitmap = new Bitmap(webBrowser1.Width, webBrowser1.Height);
webBrowser1.DrawToBitmap(bitmap, new Rectangle(0, 0, webBrowser1.Width, webBrowser1.Height));
Bitmap pic = bitmap.Clone(new Rectangle(711, 431, 873 - 711, 472 - 431), bitmap.PixelFormat);
pic.Save("image.png");
pic.Dispose();
bitmap.Dispose();
Jazerix 0 Junior Poster in Training

Got it working now :D

private void Report_DoWork(object sender, DoWorkEventArgs e)
        {
            while (timerdone !=  true)
            {
                Status.Text = "Waiting for timer! " + timer.ToString() + "/65 Left";
            }
            MessageBox.Show("DONE");
        }

Looks awesome! Love you guys thanks for the help :)

Jazerix 0 Junior Poster in Training

You know what, i think im getting it now, ill report back in a moment and tell you if it worked :)

Jazerix 0 Junior Poster in Training

See thats what i dont get, ive been working with "while" before and it have always worked :S

As far as i know, its supposed to loop it becomes valid

Jazerix 0 Junior Poster in Training

Well first of all, my code does start the timer :P

secondly, "Report_DoWork", is a backgroundworker that i use for this

I want my application to show the message test once it gets to 65

Jazerix 0 Junior Poster in Training

Hey there

so i made this code, and i do not get why my while loop doesn't work, it checks once and then it continues to the next line, this is my code:

private void Timer1_Tick(object sender, EventArgs e)
        {
            timer++;
            if (timer != 65)
            {
                timerdone = false;
            }
            else
            {
                timerdone = true;
                Timer1.Stop();
            }
        }

        private void Report_DoWork(object sender, DoWorkEventArgs e)
        {
            while (timerdone ==  true)
            {
                MessageBox.Show("TEST");
            }
        }

any idea of whats wrong :S?

Jazerix 0 Junior Poster in Training

Change line 1 to read String SteamPath = String.Empty; You haven't initialised the String and when you try and return it, it is possible that you're trying to return a non-initialised string.

ohhhh, makes sense, thanks! :D

Jazerix 0 Junior Poster in Training

Hey there

This might be a stupid question, but I don't get why i cant do this

string SteamPath;
            XmlDocument LoadDoc = new XmlDocument();
            LoadDoc.Load("Config.xml");
            XmlElement rootless = LoadDoc.DocumentElement;
            if (rootless.Attributes["SteamPath"].Value == "")
            {

            }
            else
            {
                SteamPath = rootless.Attributes["SteamPath"].Value;
            }

            return SteamPath;

It gives me the error "Use of unassigned local variable 'Steam Path'" of course that makes sense, since its under the same code as where its declared, but i just dont get why it has to be like that? How else should i do this?

Sorry if this is a stupid question, i was just wondering why it was like this :)

Cheers
-jaz

Jazerix 0 Junior Poster in Training

Thanks! that worked :D

Jazerix 0 Junior Poster in Training

doing that gives me an error at line three saying "The network path was not found."

however when i google the file, its clearly defining it as http :P

Jazerix 0 Junior Poster in Training

Thanks for the reply, however im facing a problem at line two saying "Unable to cast object of type 'System.Net.HttpWebRequest' to type 'System.Net.FileWebRequest'." :P

Jazerix 0 Junior Poster in Training

Hey there

So, i got a website, and i want a textbox to load a .txt file loaded on my site, so it doesnt need to be downloaded, but simply just streamed to the textbox.text

for example google.com/textfile.txt, and when i click a button it would load the content of the txt file from the site
how can i do this in c#?

Hope u can follow me

Cheers
Jazerix

Jazerix 0 Junior Poster in Training

Hey everyone, i probably should have done this some time ago but i didn't :)

Anyways
I'm Niels F. Andersen

Nickname: Jazerix
Location: Odense, Denmark
Age: 15

Right now I work for a company called Gasa Group as an It Supporter Assistant here in Denmark :) Sometimes I'm lucky and I get assigned to some small C# tasks, otherwise it's just support and other boring stuff.. Besides that I use a lot of my spare time to learn how to use C# and creating my own small projects.
Daniweb is therefore really important to me, and a lot of the users here, have helped me out with some of the issues I've had with my projects.
THANKS! :)

When it comes to music, I'm into electric rock (like Celldweller / Blue Stahli) and of course also just rock in general. Besides that i also like listening to dubstep.

Education: Well i guess that would be highschool, I'm not really sure what to call our system, but let's just say I'm attending the tenth grade next school year.

Favorite tv-shows: that would be Burn Notice and Family guy for sure :D

Favorite Video Games: Guild Wars, League of Legends and Mass Effect

Alright, thanks for reading and thanks for letting me be part of this awesome community :)

Greetings from here

Jazerix 0 Junior Poster in Training

Alright, ill look into it, thank you so much for your help :)!

Jazerix 0 Junior Poster in Training

Sure thanks, that would be wonderful :)

the program is private :)

Jazerix 0 Junior Poster in Training

well, that kinda sucks :P

is there any way i could make it in between?

Jazerix 0 Junior Poster in Training

I hope so, just woke up ;)

First of all, zachattack05 that program you made sure is neat, actually it seems to work now, i tried with the key "asdfewrewqrss323" (totally random) and it worked, however when i tried with 3956439587341234566 as the key, i got the same error, which i didnt really get since it was between the 128-192 bits :P

Actually it only seems to work with a 128 bit key or a 192 bit key, nothing in between :P

Jazerix 0 Junior Poster in Training

oh, can u give me an example of a 128 bit key :)?

Jazerix 0 Junior Poster in Training
using System;
using System.Security.Cryptography;
using System.Text;

public static class Encryption
{
    public static string Encrypt(string input, string key)
    {
        byte[] inputArray = UTF8Encoding.UTF8.GetBytes(input);
        TripleDESCryptoServiceProvider tripleDES = new TripleDESCryptoServiceProvider();
        tripleDES.Key = UTF8Encoding.UTF8.GetBytes(key);
        tripleDES.Mode = CipherMode.ECB;
        tripleDES.Padding = PaddingMode.PKCS7;
        ICryptoTransform cTransform = tripleDES.CreateEncryptor();
        byte[] resultArray = cTransform.TransformFinalBlock(inputArray, 0, inputArray.Length);
        tripleDES.Clear();
        return Convert.ToBase64String(resultArray, 0, resultArray.Length);
    }
    public static string Decrypt(string input, string key)
    {
        byte[] inputArray = Convert.FromBase64String(input);
        TripleDESCryptoServiceProvider tripleDES = new TripleDESCryptoServiceProvider();
        tripleDES.Key = UTF8Encoding.UTF8.GetBytes(key);
        tripleDES.Mode = CipherMode.ECB;
        tripleDES.Padding = PaddingMode.PKCS7;
        ICryptoTransform cTransform = tripleDES.CreateDecryptor();
        byte[] resultArray = cTransform.TransformFinalBlock(inputArray, 0, inputArray.Length);
        tripleDES.Clear();
        return UTF8Encoding.UTF8.GetString(resultArray);
    }

I was lucky enough to find this code on the internet, but for some reason im getting this error

Specified key is not a valid size for this algorithm.
tripleDES.Key = UTF8Encoding.UTF8.GetBytes(key); <-here
My key would be "jazerix", i'm not sure why it wont work, any ideas?

Jazerix 0 Junior Poster in Training

thanks, ill look into it :) should i just upload the access file to my website or how does that work :D?

Jazerix 0 Junior Poster in Training

Hey

first of all, im sorry if the title is a little misleading

Im creating a private program for myself and some friends, and i want to make a login form, but i was wondering what would be the best way to host the usernames and passwords? I used to use MySQL, but honestly it seemed a little slow, maybe thats just his server ^^, nevertheless what other options do i have? What would be a reliable and fast way to host information that my application should access to login :)

I apologize if this isnt much of a c# question..

Kind Regards
-Jazerix

Jazerix 0 Junior Poster in Training

Hey :)

So i got a picture on a site, and it does not want me to download it from c# :(
when i inspect the element in c# i get a link to the cache picture and not the picture on the site

data:image/png;base64,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

like this :(

ive been messing with this for the last couple of hours, and i cannot find a solution... :(

please help me :P

-Kind Regards
--Jazerix

Jazerix 0 Junior Poster in Training

Yay i got it working, but i got another question, if i want to stream the video, not the video itself in the webbrowser element but just the file behind the media player, is there any way i can get the link to the code behind, and then just stream the sound?
cheers
-Jazerix